summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Guenthe <guenther@cvs.openbsd.org>2011-04-05 15:22:52 +0000
committerPhilip Guenthe <guenther@cvs.openbsd.org>2011-04-05 15:22:52 +0000
commit4f0c2a44818e3246943a189cf42243b67f482ce8 (patch)
treef3d3e214e1626ca4a03f4d921877eade8f1f31f8
parent7b7c691daf4b676486dd523d90208fa875b675ba (diff)
Remove FREEBSD_COMPAT bits and obsolete RTHREAD define
-rw-r--r--bin/systrace/openbsd-syscalls.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/bin/systrace/openbsd-syscalls.c b/bin/systrace/openbsd-syscalls.c
index dd0f41dbec7..65e3f8264da 100644
--- a/bin/systrace/openbsd-syscalls.c
+++ b/bin/systrace/openbsd-syscalls.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: openbsd-syscalls.c,v 1.38 2010/07/05 22:26:20 tedu Exp $ */
+/* $OpenBSD: openbsd-syscalls.c,v 1.39 2011/04/05 15:22:51 guenther Exp $ */
/*
* Copyright 2002 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -33,7 +33,6 @@
#include <sys/syscall.h>
-#include <compat/freebsd/freebsd_syscall.h>
#include <compat/linux/linux_syscall.h>
#include <compat/svr4/svr4_syscall.h>
@@ -45,10 +44,8 @@
#define SYSVMSG
#define SYSVSHM
#define LFS
-#define RTHREADS
#include <kern/syscalls.c>
-#include <compat/freebsd/freebsd_syscalls.c>
#include <compat/linux/linux_syscalls.c>
#include <compat/svr4/svr4_syscalls.c>
#undef KTRACE
@@ -59,7 +56,6 @@
#undef SYSVMSG
#undef SYSVSHM
#undef LFS
-#undef RTHREADS
#include <sys/ioctl.h>
#include <sys/tree.h>
@@ -86,7 +82,6 @@ static struct emulation emulations[] = {
{ "aout", syscallnames, SYS_MAXSYSCALL },
{ "linux", linux_syscallnames, LINUX_SYS_MAXSYSCALL },
{ "svr4", svr4_syscallnames, SVR4_SYS_MAXSYSCALL },
- { "freebsd", freebsd_syscallnames, FREEBSD_SYS_MAXSYSCALL },
{ NULL, NULL, 0 }
};