mirror of
https://review.haiku-os.org/haiku
synced 2025-01-31 02:35:03 +01:00
18 lines
535 B
C
18 lines
535 B
C
|
/*
|
||
|
* Copyright 2007, Travis Geiselbrecht. All rights reserved.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef _KERNEL_ARCH_x86_COMMPAGE_H
|
||
|
#define _KERNEL_ARCH_x86_COMMPAGE_H
|
||
|
|
||
|
#ifndef _KERNEL_COMMPAGE_H
|
||
|
# error Must not be included directly. Include <commpage.h> instead!
|
||
|
#endif
|
||
|
|
||
|
#define COMMPAGE_ENTRY_X86_SYSCALL (COMMPAGE_ENTRY_FIRST_ARCH_SPECIFIC + 0)
|
||
|
#define COMMPAGE_ENTRY_X86_MEMCPY (COMMPAGE_ENTRY_FIRST_ARCH_SPECIFIC + 1)
|
||
|
|
||
|
#define ARCH_USER_COMMPAGE_ADDR (0xffff0000)
|
||
|
|
||
|
#endif /* _KERNEL_ARCH_x86_COMMPAGE_H */
|