aboutsummaryrefslogtreecommitdiff
path: root/sys/powerpc/include/proc.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/powerpc/include/proc.h')
-rw-r--r--sys/powerpc/include/proc.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/sys/powerpc/include/proc.h b/sys/powerpc/include/proc.h
index d51116bb0139..f3bb8afc3be3 100644
--- a/sys/powerpc/include/proc.h
+++ b/sys/powerpc/include/proc.h
@@ -48,4 +48,14 @@ struct mdproc {
#define KINFO_PROC_SIZE 768
+#ifdef _KERNEL
+struct syscall_args {
+ u_int code;
+ struct sysent *callp;
+ register_t args[10];
+ int narg;
+};
+#define HAVE_SYSCALL_ARGS_DEF 1
+#endif
+
#endif /* !_MACHINE_PROC_H_ */