2007-02-19 03:32:44 +03:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
|
2007-09-27 16:21:33 +04:00
|
|
|
/*! Some systemwide commpage constants, used in the kernel and libroot */
|
|
|
|
|
|
|
|
#ifndef _ASSEMBLER
|
|
|
|
# include <SupportDefs.h>
|
|
|
|
#endif
|
|
|
|
|
2007-02-19 03:32:44 +03:00
|
|
|
|
2007-02-20 03:21:45 +03:00
|
|
|
/* be careful what you put here, this file is included from assembly */
|
|
|
|
#define COMMPAGE_ENTRY_MAGIC 0
|
|
|
|
#define COMMPAGE_ENTRY_VERSION 1
|
|
|
|
#define COMMPAGE_ENTRY_SYSCALL 2
|
|
|
|
|
|
|
|
#define USER_COMMPAGE_ADDR (0xffff0000)
|
|
|
|
#define COMMPAGE_SIZE (0x8000)
|
|
|
|
#define TABLE_ENTRIES 64
|
|
|
|
|
|
|
|
#define COMMPAGE_SIGNATURE 'COMM'
|
|
|
|
#define COMMPAGE_VERSION 1
|
|
|
|
|
|
|
|
#ifndef _ASSEMBLER
|
2007-02-19 03:32:44 +03:00
|
|
|
status_t commpage_init(void);
|
2007-02-20 03:21:45 +03:00
|
|
|
#endif
|
2007-02-19 03:32:44 +03:00
|
|
|
|
2007-09-27 16:21:33 +04:00
|
|
|
#endif /* _KERNEL_ARCH_x86_COMMPAGE_H */
|