diff options
author | jhb <jhb@FreeBSD.org> | 2008-09-25 20:50:21 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2008-09-25 20:50:21 +0000 |
commit | 97facf9f0e918833593afbc7a32dde456fe2ea68 (patch) | |
tree | 149c53adc50c9efe458eabd4bd1cadf0ab2b2b23 /sys/compat/ia32/ia32_sysvec.c | |
parent | f1ce06c8fb1bf46519e719f39617b53afb0c3ab8 (diff) | |
download | FreeBSD-src-97facf9f0e918833593afbc7a32dde456fe2ea68.zip FreeBSD-src-97facf9f0e918833593afbc7a32dde456fe2ea68.tar.gz |
Add support for installing 32-bit system calls from kernel modules. This
includes syscall32_{de,}register() routines as well as a module handler
and wrapper macros similar to the support for native syscalls in
<sys/sysent.h>.
MFC after: 1 month
Diffstat (limited to 'sys/compat/ia32/ia32_sysvec.c')
-rw-r--r-- | sys/compat/ia32/ia32_sysvec.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/compat/ia32/ia32_sysvec.c b/sys/compat/ia32/ia32_sysvec.c index cf87b7c..ef74ba0 100644 --- a/sys/compat/ia32/ia32_sysvec.c +++ b/sys/compat/ia32/ia32_sysvec.c @@ -96,8 +96,6 @@ CTASSERT(sizeof(struct ia32_sigframe4) == 408); static register_t *ia32_copyout_strings(struct image_params *imgp); static void ia32_fixlimit(struct rlimit *rl, int which); -extern struct sysent freebsd32_sysent[]; - SYSCTL_NODE(_compat, OID_AUTO, ia32, CTLFLAG_RW, 0, "ia32 mode"); static u_long ia32_maxdsiz = IA32_MAXDSIZ; |