Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
/*
|
|
|
|
* System call prototypes.
|
|
|
|
*
|
|
|
|
* DO NOT EDIT-- this file is automatically generated.
|
2000-05-09 21:52:02 +00:00
|
|
|
* $FreeBSD$
|
2009-05-08 20:16:04 +00:00
|
|
|
* created from FreeBSD: head/sys/i386/ibcs2/syscalls.xenix 160798 2006-07-28 19:05:28Z jhb
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _IBCS2_XENIX_H_
|
|
|
|
#define _IBCS2_XENIX_H_
|
|
|
|
|
1997-03-29 13:15:23 +00:00
|
|
|
#include <sys/signal.h>
|
2000-05-09 21:52:02 +00:00
|
|
|
#include <sys/acl.h>
|
2009-05-08 20:16:04 +00:00
|
|
|
#include <sys/cpuset.h>
|
2006-11-11 16:26:58 +00:00
|
|
|
#include <sys/_semaphore.h>
|
2003-12-24 00:15:20 +00:00
|
|
|
#include <sys/ucontext.h>
|
2000-05-09 21:52:02 +00:00
|
|
|
|
2006-08-15 17:37:01 +00:00
|
|
|
#include <bsm/audit_kevents.h>
|
|
|
|
|
1998-06-07 17:13:14 +00:00
|
|
|
struct proc;
|
|
|
|
|
2001-09-12 08:38:13 +00:00
|
|
|
struct thread;
|
|
|
|
|
1998-06-08 11:08:35 +00:00
|
|
|
#define PAD_(t) (sizeof(register_t) <= sizeof(t) ? \
|
|
|
|
0 : sizeof(register_t) - sizeof(t))
|
1998-06-07 17:13:14 +00:00
|
|
|
|
2003-12-24 00:15:20 +00:00
|
|
|
#if BYTE_ORDER == LITTLE_ENDIAN
|
|
|
|
#define PADL_(t) 0
|
|
|
|
#define PADR_(t) PAD_(t)
|
|
|
|
#else
|
|
|
|
#define PADL_(t) PAD_(t)
|
|
|
|
#define PADR_(t) 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct xenix_rdchk_args {
|
|
|
|
char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
};
|
2003-12-24 00:15:20 +00:00
|
|
|
struct xenix_chsize_args {
|
|
|
|
char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
|
|
|
|
char size_l_[PADL_(long)]; long size; char size_r_[PADR_(long)];
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
};
|
2003-12-24 00:15:20 +00:00
|
|
|
struct xenix_ftime_args {
|
|
|
|
char tp_l_[PADL_(struct timeb *)]; struct timeb * tp; char tp_r_[PADR_(struct timeb *)];
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
};
|
2003-12-24 00:15:20 +00:00
|
|
|
struct xenix_nap_args {
|
|
|
|
char millisec_l_[PADL_(int)]; int millisec; char millisec_r_[PADR_(int)];
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
};
|
2003-12-24 00:15:20 +00:00
|
|
|
struct xenix_scoinfo_args {
|
1998-06-07 17:13:14 +00:00
|
|
|
register_t dummy;
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
};
|
2003-12-24 00:15:20 +00:00
|
|
|
struct xenix_eaccess_args {
|
|
|
|
char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
|
|
|
|
char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
|
1996-03-28 19:53:21 +00:00
|
|
|
};
|
2003-12-24 00:15:20 +00:00
|
|
|
struct ibcs2_sigaction_args {
|
|
|
|
char sig_l_[PADL_(int)]; int sig; char sig_r_[PADR_(int)];
|
|
|
|
char act_l_[PADL_(struct ibcs2_sigaction *)]; struct ibcs2_sigaction * act; char act_r_[PADR_(struct ibcs2_sigaction *)];
|
|
|
|
char oact_l_[PADL_(struct ibcs2_sigaction *)]; struct ibcs2_sigaction * oact; char oact_r_[PADR_(struct ibcs2_sigaction *)];
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
};
|
2003-12-24 00:15:20 +00:00
|
|
|
struct ibcs2_sigprocmask_args {
|
|
|
|
char how_l_[PADL_(int)]; int how; char how_r_[PADR_(int)];
|
|
|
|
char set_l_[PADL_(ibcs2_sigset_t *)]; ibcs2_sigset_t * set; char set_r_[PADR_(ibcs2_sigset_t *)];
|
|
|
|
char oset_l_[PADL_(ibcs2_sigset_t *)]; ibcs2_sigset_t * oset; char oset_r_[PADR_(ibcs2_sigset_t *)];
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
};
|
2003-12-24 00:15:20 +00:00
|
|
|
struct ibcs2_sigpending_args {
|
|
|
|
char mask_l_[PADL_(ibcs2_sigset_t *)]; ibcs2_sigset_t * mask; char mask_r_[PADR_(ibcs2_sigset_t *)];
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
};
|
2003-12-24 00:15:20 +00:00
|
|
|
struct ibcs2_sigsuspend_args {
|
|
|
|
char mask_l_[PADL_(ibcs2_sigset_t *)]; ibcs2_sigset_t * mask; char mask_r_[PADR_(ibcs2_sigset_t *)];
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
};
|
2003-12-24 00:15:20 +00:00
|
|
|
struct ibcs2_getgroups_args {
|
|
|
|
char gidsetsize_l_[PADL_(int)]; int gidsetsize; char gidsetsize_r_[PADR_(int)];
|
|
|
|
char gidset_l_[PADL_(ibcs2_gid_t *)]; ibcs2_gid_t * gidset; char gidset_r_[PADR_(ibcs2_gid_t *)];
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
};
|
2003-12-24 00:15:20 +00:00
|
|
|
struct ibcs2_setgroups_args {
|
|
|
|
char gidsetsize_l_[PADL_(int)]; int gidsetsize; char gidsetsize_r_[PADR_(int)];
|
|
|
|
char gidset_l_[PADL_(ibcs2_gid_t *)]; ibcs2_gid_t * gidset; char gidset_r_[PADR_(ibcs2_gid_t *)];
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
};
|
2003-12-24 00:15:20 +00:00
|
|
|
struct ibcs2_sysconf_args {
|
|
|
|
char name_l_[PADL_(int)]; int name; char name_r_[PADR_(int)];
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
};
|
2003-12-24 00:15:20 +00:00
|
|
|
struct ibcs2_pathconf_args {
|
|
|
|
char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
|
|
|
|
char name_l_[PADL_(int)]; int name; char name_r_[PADR_(int)];
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
};
|
2003-12-24 00:15:20 +00:00
|
|
|
struct ibcs2_fpathconf_args {
|
|
|
|
char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
|
|
|
|
char name_l_[PADL_(int)]; int name; char name_r_[PADR_(int)];
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
};
|
2003-12-24 00:15:20 +00:00
|
|
|
struct ibcs2_rename_args {
|
|
|
|
char from_l_[PADL_(char *)]; char * from; char from_r_[PADR_(char *)];
|
|
|
|
char to_l_[PADL_(char *)]; char * to; char to_r_[PADR_(char *)];
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
};
|
2003-12-24 00:15:20 +00:00
|
|
|
struct xenix_utsname_args {
|
|
|
|
char addr_l_[PADL_(long)]; long addr; char addr_r_[PADR_(long)];
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
};
|
2002-03-20 05:48:58 +00:00
|
|
|
int xenix_rdchk(struct thread *, struct xenix_rdchk_args *);
|
|
|
|
int xenix_chsize(struct thread *, struct xenix_chsize_args *);
|
|
|
|
int xenix_ftime(struct thread *, struct xenix_ftime_args *);
|
|
|
|
int xenix_nap(struct thread *, struct xenix_nap_args *);
|
|
|
|
int xenix_scoinfo(struct thread *, struct xenix_scoinfo_args *);
|
|
|
|
int xenix_eaccess(struct thread *, struct xenix_eaccess_args *);
|
|
|
|
int ibcs2_sigaction(struct thread *, struct ibcs2_sigaction_args *);
|
|
|
|
int ibcs2_sigprocmask(struct thread *, struct ibcs2_sigprocmask_args *);
|
|
|
|
int ibcs2_sigpending(struct thread *, struct ibcs2_sigpending_args *);
|
|
|
|
int ibcs2_sigsuspend(struct thread *, struct ibcs2_sigsuspend_args *);
|
|
|
|
int ibcs2_getgroups(struct thread *, struct ibcs2_getgroups_args *);
|
|
|
|
int ibcs2_setgroups(struct thread *, struct ibcs2_setgroups_args *);
|
|
|
|
int ibcs2_sysconf(struct thread *, struct ibcs2_sysconf_args *);
|
|
|
|
int ibcs2_pathconf(struct thread *, struct ibcs2_pathconf_args *);
|
|
|
|
int ibcs2_fpathconf(struct thread *, struct ibcs2_fpathconf_args *);
|
|
|
|
int ibcs2_rename(struct thread *, struct ibcs2_rename_args *);
|
|
|
|
int xenix_utsname(struct thread *, struct xenix_utsname_args *);
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
|
1998-06-07 17:13:14 +00:00
|
|
|
#ifdef COMPAT_43
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* COMPAT_43 */
|
|
|
|
|
2003-12-24 00:15:20 +00:00
|
|
|
|
|
|
|
#ifdef COMPAT_FREEBSD4
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* COMPAT_FREEBSD4 */
|
|
|
|
|
2009-05-08 20:16:04 +00:00
|
|
|
|
|
|
|
#ifdef COMPAT_FREEBSD6
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* COMPAT_FREEBSD6 */
|
|
|
|
|
2011-09-16 14:04:14 +00:00
|
|
|
|
|
|
|
#ifdef COMPAT_FREEBSD7
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* COMPAT_FREEBSD7 */
|
|
|
|
|
2006-08-15 17:37:01 +00:00
|
|
|
#define IBCS2_XENIX_AUE_xenix_rdchk AUE_NULL
|
|
|
|
#define IBCS2_XENIX_AUE_xenix_chsize AUE_FTRUNCATE
|
|
|
|
#define IBCS2_XENIX_AUE_xenix_ftime AUE_NULL
|
|
|
|
#define IBCS2_XENIX_AUE_xenix_nap AUE_NULL
|
|
|
|
#define IBCS2_XENIX_AUE_xenix_scoinfo AUE_NULL
|
|
|
|
#define IBCS2_XENIX_AUE_xenix_eaccess AUE_EACCESS
|
|
|
|
#define IBCS2_XENIX_AUE_ibcs2_sigaction AUE_NULL
|
|
|
|
#define IBCS2_XENIX_AUE_ibcs2_sigprocmask AUE_NULL
|
|
|
|
#define IBCS2_XENIX_AUE_ibcs2_sigpending AUE_NULL
|
|
|
|
#define IBCS2_XENIX_AUE_ibcs2_sigsuspend AUE_NULL
|
|
|
|
#define IBCS2_XENIX_AUE_ibcs2_getgroups AUE_GETGROUPS
|
|
|
|
#define IBCS2_XENIX_AUE_ibcs2_setgroups AUE_SETGROUPS
|
|
|
|
#define IBCS2_XENIX_AUE_ibcs2_sysconf AUE_NULL
|
|
|
|
#define IBCS2_XENIX_AUE_ibcs2_pathconf AUE_PATHCONF
|
|
|
|
#define IBCS2_XENIX_AUE_ibcs2_fpathconf AUE_FPATHCONF
|
|
|
|
#define IBCS2_XENIX_AUE_ibcs2_rename AUE_RENAME
|
|
|
|
#define IBCS2_XENIX_AUE_xenix_utsname AUE_NULL
|
|
|
|
|
1998-06-07 17:13:14 +00:00
|
|
|
#undef PAD_
|
2003-12-24 00:15:20 +00:00
|
|
|
#undef PADL_
|
|
|
|
#undef PADR_
|
1998-06-07 17:13:14 +00:00
|
|
|
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
#endif /* !_IBCS2_XENIX_H_ */
|