mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 12:23:31 +00:00
* include/napi/i386/segment.h (put_user, get_user, bad_user_access_length, __segment_dummy, __sd, __const_sd, __put_user, __get_user, __generic_memcpy_tofs, __constant_memcpy_tofs, COMMON, __generic_memcpy_fromfs, __constant_memcpy_fromfs, memcpy_fromfs, memcpy_tofs, get_fs_byte, get_fs_word, get_fs_long, put_fs_byte, put_fs_word, put_fs_long, get_user_word, get_user_byte, get_user_long, put_user_byte, put_user_word, put_user_long, get_fs, get_ds, set_fs, set_ds): Remove. svn path=/trunk/; revision=4310
13 lines
345 B
C
13 lines
345 B
C
#ifndef _ASM_SEGMENT_H
|
|
#define _ASM_SEGMENT_H
|
|
|
|
#define KERNEL_CS (0x8)
|
|
#define KERNEL_DS (0x10)
|
|
#define USER_CS (0x18 + 0x3)
|
|
#define USER_DS (0x20 + 0x3)
|
|
#define RESERVED_FOR_TSS (0x28)
|
|
#define PCR_SELECTOR (0x30)
|
|
#define TEB_SELECTOR (0x38 + 0x3)
|
|
|
|
#endif /* _ASM_SEGMENT_H */
|