aboutsummaryrefslogtreecommitdiff
path: root/sys/i386/svr4/svr4_genassym.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/i386/svr4/svr4_genassym.c')
-rw-r--r--sys/i386/svr4/svr4_genassym.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/sys/i386/svr4/svr4_genassym.c b/sys/i386/svr4/svr4_genassym.c
deleted file mode 100644
index 76e1cc7eb3a9..000000000000
--- a/sys/i386/svr4/svr4_genassym.c
+++ /dev/null
@@ -1,24 +0,0 @@
-/* Derived from: Id: linux_genassym.c,v 1.8 1998/07/29 15:50:41 bde Exp */
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
-#include <sys/param.h>
-#include <sys/assym.h>
-#include <sys/systm.h>
-
-#include <compat/svr4/svr4_signal.h>
-#include <compat/svr4/svr4_ucontext.h>
-
-/* XXX: This bit sucks rocks, but gets rid of compiler errors. Maybe I should
- * fix the include files instead... */
-#define SVR4_MACHDEP_JUST_REGS
-#include <i386/svr4/svr4_machdep.h>
-
-ASSYM(SVR4_SIGF_HANDLER, offsetof(struct svr4_sigframe, sf_handler));
-ASSYM(SVR4_SIGF_UC, offsetof(struct svr4_sigframe, sf_uc));
-ASSYM(SVR4_UC_FS, offsetof(struct svr4_ucontext,
- uc_mcontext.greg[SVR4_X86_FS]));
-ASSYM(SVR4_UC_GS, offsetof(struct svr4_ucontext,
- uc_mcontext.greg[SVR4_X86_GS]));
-ASSYM(SVR4_UC_EFLAGS, offsetof(struct svr4_ucontext,
- uc_mcontext.greg[SVR4_X86_EFL]));