1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

Changes preparing for iBCS support

Reviewed by:
Submitted by:
This commit is contained in:
Søren Schmidt 1994-08-24 11:51:46 +00:00
parent ca70a975e9
commit c9177dd5f0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2256
2 changed files with 6 additions and 8 deletions

View File

@ -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

View File

@ -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 */
/*