aboutsummaryrefslogtreecommitdiff
path: root/sys/i386/include/proc.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/i386/include/proc.h')
-rw-r--r--sys/i386/include/proc.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/sys/i386/include/proc.h b/sys/i386/include/proc.h
index 86be8c81721c..0d922520eab9 100644
--- a/sys/i386/include/proc.h
+++ b/sys/i386/include/proc.h
@@ -77,6 +77,14 @@ void user_ldt_deref(struct proc_ldt *pldt);
extern struct mtx dt_lock;
+struct syscall_args {
+ u_int code;
+ struct sysent *callp;
+ register_t args[8];
+ int narg;
+};
+#define HAVE_SYSCALL_ARGS_DEF 1
+
#endif /* _KERNEL */
#endif /* !_MACHINE_PROC_H_ */