aboutsummaryrefslogtreecommitdiff
path: root/sys/sparc64/include/proc.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/sparc64/include/proc.h')
-rw-r--r--sys/sparc64/include/proc.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/sys/sparc64/include/proc.h b/sys/sparc64/include/proc.h
index 3c236637fb97..dceea17a33e7 100644
--- a/sys/sparc64/include/proc.h
+++ b/sys/sparc64/include/proc.h
@@ -53,4 +53,16 @@ struct mdproc {
#define KINFO_PROC_SIZE 1088
+#ifdef _KERNEL
+
+struct syscall_args {
+ u_int code;
+ struct sysent *callp;
+ register_t args[8];
+ int narg;
+};
+#define HAVE_SYSCALL_ARGS_DEF 1
+
+#endif
+
#endif /* !_MACHINE_PROC_H_ */