Architecture specific syscalls (i386) from NetBSD

This commit is contained in:
Rodney W. Grimes 1993-10-08 11:31:40 +00:00
parent 3331c2af28
commit f43bd59ec7
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,10 @@
/*
* Architecture specific syscalls (i386)
*/
#define I386_GET_LDT 0
#define I386_SET_LDT 1
#ifndef KERNEL
int i386_get_ldt __P((int, union descriptor *, int));
int i386_set_ldt __P((int, union descriptor *, int));
#endif

View File

@ -0,0 +1,10 @@
/*
* Architecture specific syscalls (i386)
*/
#define I386_GET_LDT 0
#define I386_SET_LDT 1
#ifndef KERNEL
int i386_get_ldt __P((int, union descriptor *, int));
int i386_set_ldt __P((int, union descriptor *, int));
#endif