Deleted Added
full compact
kern_proc.c (1817) kern_proc.c (2112)
1/*
2 * Copyright (c) 1982, 1986, 1989, 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)kern_proc.c 8.4 (Berkeley) 1/4/94
1/*
2 * Copyright (c) 1982, 1986, 1989, 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)kern_proc.c 8.4 (Berkeley) 1/4/94
34 * $Id$
34 * $Id: kern_proc.c,v 1.3 1994/08/02 07:42:07 davidg Exp $
35 */
36
37#include <sys/param.h>
38#include <sys/systm.h>
39#include <sys/map.h>
40#include <sys/kernel.h>
41#include <sys/proc.h>
42#include <sys/buf.h>
43#include <sys/acct.h>
44#include <sys/wait.h>
45#include <sys/file.h>
46#include <ufs/ufs/quota.h>
47#include <sys/uio.h>
48#include <sys/malloc.h>
49#include <sys/mbuf.h>
50#include <sys/ioctl.h>
51#include <sys/tty.h>
52
35 */
36
37#include <sys/param.h>
38#include <sys/systm.h>
39#include <sys/map.h>
40#include <sys/kernel.h>
41#include <sys/proc.h>
42#include <sys/buf.h>
43#include <sys/acct.h>
44#include <sys/wait.h>
45#include <sys/file.h>
46#include <ufs/ufs/quota.h>
47#include <sys/uio.h>
48#include <sys/malloc.h>
49#include <sys/mbuf.h>
50#include <sys/ioctl.h>
51#include <sys/tty.h>
52
53volatile struct proc *allproc; /* all processes */
54struct proc *zombproc; /* just zombies */
55
53void pgdelete __P((struct pgrp *));
54void fixjobc __P((struct proc *, struct pgrp *, int));
55
56/*
57 * Structure associated with user cacheing.
58 */
59struct uidinfo {
60 struct uidinfo *ui_next;

--- 351 unchanged lines hidden ---
56void pgdelete __P((struct pgrp *));
57void fixjobc __P((struct proc *, struct pgrp *, int));
58
59/*
60 * Structure associated with user cacheing.
61 */
62struct uidinfo {
63 struct uidinfo *ui_next;

--- 351 unchanged lines hidden ---