summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/proc.h7
-rw-r--r--sys/sys/systm.h7
2 files changed, 6 insertions, 8 deletions
diff --git a/sys/sys/proc.h b/sys/sys/proc.h
index 849fffa..8712b0c 100644
--- a/sys/sys/proc.h
+++ b/sys/sys/proc.h
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)proc.h 8.8 (Berkeley) 1/21/94
- * $Id: proc.h,v 1.3 1994/08/02 07:53:20 davidg Exp $
+ * $Id: proc.h,v 1.4 1994/08/18 22:35:44 wollman Exp $
*/
#ifndef _SYS_PROC_H_
@@ -135,7 +135,10 @@ struct proc {
struct vnode *p_textvp; /* Vnode of executable. */
- long p_spare[5]; /* pad to 256, avoid shifting eproc. */
+ struct sysentvec *p_sysent; /* syscall entry table pointer */
+
+ long p_spare[4]; /* pad to 256, avoid shifting eproc. */
+
/* End area that is zeroed on creation. */
#define p_endzero p_startcopy
diff --git a/sys/sys/systm.h b/sys/sys/systm.h
index d54c7bc..209f046 100644
--- a/sys/sys/systm.h
+++ b/sys/sys/systm.h
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)systm.h 8.4 (Berkeley) 2/23/94
- * $Id: systm.h,v 1.7 1994/08/18 22:35:47 wollman Exp $
+ * $Id: systm.h,v 1.8 1994/08/21 04:42:01 paul Exp $
*/
#ifndef _SYS_SYSTM_H_
@@ -97,11 +97,6 @@ extern struct vnode *rootvp; /* vnode equivalent to above */
extern dev_t swapdev; /* swapping device */
extern struct vnode *swapdev_vp;/* vnode equivalent to above */
-extern struct sysent { /* system call table */
- int sy_narg; /* number of arguments */
- int (*sy_call)(); /* implementing function */
-} sysent[];
-
extern int boothowto; /* reboot flags, from console subsystem */
/*
OpenPOWER on IntegriCloud