From ec1315c2eaddf0721b33e60802e8285ef632aa8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Sat, 19 Jan 2008 18:16:45 +0000 Subject: [PATCH] added arch_commpage.h for the m68k arch (copied on x86) git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23646 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- .../private/kernel/arch/m68k/arch_commpage.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 headers/private/kernel/arch/m68k/arch_commpage.h diff --git a/headers/private/kernel/arch/m68k/arch_commpage.h b/headers/private/kernel/arch/m68k/arch_commpage.h new file mode 100644 index 0000000000..7409a600f6 --- /dev/null +++ b/headers/private/kernel/arch/m68k/arch_commpage.h @@ -0,0 +1,17 @@ +/* + * Copyright 2007, Travis Geiselbrecht. All rights reserved. + * Distributed under the terms of the MIT License. + */ +#ifndef _KERNEL_ARCH_M68K_COMMPAGE_H +#define _KERNEL_ARCH_M68K_COMMPAGE_H + +#ifndef _KERNEL_COMMPAGE_H +# error Must not be included directly. Include instead! +#endif + +#define COMMPAGE_ENTRY_M68K_SYSCALL (COMMPAGE_ENTRY_FIRST_ARCH_SPECIFIC + 0) +#define COMMPAGE_ENTRY_M68K_MEMCPY (COMMPAGE_ENTRY_FIRST_ARCH_SPECIFIC + 1) + +#define ARCH_USER_COMMPAGE_ADDR (0xffff0000) + +#endif /* _KERNEL_ARCH_M68K_COMMPAGE_H */