summaryrefslogtreecommitdiff
path: root/i386/include
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@gnu.org>2007-04-25 13:59:03 +0000
committerThomas Schwinge <tschwinge@gnu.org>2009-06-18 00:27:08 +0200
commit7566156add4e81731bfb24e8dc891447c97b06d0 (patch)
treef23263d80a14155b8beef68ba774de32f6bdada6 /i386/include
parenta9b0cc13914324b0d4fa347c107d82166f3b1555 (diff)
2007-04-25 Thomas Schwinge <tschwinge@gnu.org>
[task #5878 --- ``Backport code from GNU Mach's trunk to gnumach-1-branch: i386_set_gdt, i386_get_gdt''] * i386/include/mach/i386/mach_i386.defs (i386_set_gdt, i386_get_gdt): Shift by two to maintain rpc id compatibility with OSKit-Mach.
Diffstat (limited to 'i386/include')
-rw-r--r--i386/include/mach/i386/mach_i386.defs19
1 files changed, 11 insertions, 8 deletions
diff --git a/i386/include/mach/i386/mach_i386.defs b/i386/include/mach/i386/mach_i386.defs
index 1f98dc3..5c9f367 100644
--- a/i386/include/mach/i386/mach_i386.defs
+++ b/i386/include/mach/i386/mach_i386.defs
@@ -67,18 +67,21 @@ routine i386_get_ldt(
selector_count : int;
out desc_list : descriptor_list_t);
+skip; /* i386_io_perm_create */
+skip; /* i386_io_perm_modify */
+
/* Modify one of a few available thread-specific segment descriptor slots.
The SELECTOR must be a value from a previous call (on any thread),
or -1 to allocate an available slot and return the segment selector for it.
These slots are copied into the CPU on each thread switch.
Returns KERN_NO_SPACE when there are no more slots available. */
-routine i386_set_gdt(
- target_thread : thread_t;
- inout selector : int;
- desc : descriptor_t);
+routine i386_set_gdt(
+ target_thread : thread_t;
+ inout selector : int;
+ desc : descriptor_t);
/* Fetch a segment descriptor set with a prior i386_set_gdt call. */
-routine i386_get_gdt(
- target_thread : thread_t;
- selector : int;
- out desc : descriptor_t);
+routine i386_get_gdt(
+ target_thread : thread_t;
+ selector : int;
+ out desc : descriptor_t);