Deleted Added
full compact
pstat.c (108457) pstat.c (108602)
1/*-
2 * Copyright (c) 1980, 1991, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 2002 Networks Associates Technologies, Inc.
5 * All rights reserved.
6 *
7 * Portions of this software were developed for the FreeBSD Project by
8 * ThinkSec AS and NAI Labs, the Security Research Division of Network

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

44 The Regents of the University of California. All rights reserved.\n";
45#endif /* not lint */
46
47#ifndef lint
48#if 0
49static char sccsid[] = "@(#)pstat.c 8.16 (Berkeley) 5/9/95";
50#endif
51static const char rcsid[] =
1/*-
2 * Copyright (c) 1980, 1991, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 2002 Networks Associates Technologies, Inc.
5 * All rights reserved.
6 *
7 * Portions of this software were developed for the FreeBSD Project by
8 * ThinkSec AS and NAI Labs, the Security Research Division of Network

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

44 The Regents of the University of California. All rights reserved.\n";
45#endif /* not lint */
46
47#ifndef lint
48#if 0
49static char sccsid[] = "@(#)pstat.c 8.16 (Berkeley) 5/9/95";
50#endif
51static const char rcsid[] =
52 "$FreeBSD: head/usr.sbin/pstat/pstat.c 108457 2002-12-30 18:19:19Z mike $";
52 "$FreeBSD: head/usr.sbin/pstat/pstat.c 108602 2003-01-03 16:23:12Z phk $";
53#endif /* not lint */
54
55#include <sys/param.h>
56#include <sys/time.h>
57#include <sys/file.h>
58#include <sys/stat.h>
59#include <sys/stdint.h>
60#include <sys/ioctl.h>
61#include <sys/ioctl_compat.h> /* XXX NTTYDISC is too well hidden */
62#include <sys/tty.h>
53#endif /* not lint */
54
55#include <sys/param.h>
56#include <sys/time.h>
57#include <sys/file.h>
58#include <sys/stat.h>
59#include <sys/stdint.h>
60#include <sys/ioctl.h>
61#include <sys/ioctl_compat.h> /* XXX NTTYDISC is too well hidden */
62#include <sys/tty.h>
63#include <sys/conf.h>
64#include <sys/blist.h>
65
66#include <sys/user.h>
67#include <sys/sysctl.h>
63#include <sys/blist.h>
64
65#include <sys/user.h>
66#include <sys/sysctl.h>
67#include <vm/swap_pager.h>
68
69#include <err.h>
70#include <fcntl.h>
71#include <kvm.h>
72#include <limits.h>
73#include <nlist.h>
74#include <stdio.h>
75#include <stdlib.h>

--- 504 unchanged lines hidden ---
68
69#include <err.h>
70#include <fcntl.h>
71#include <kvm.h>
72#include <limits.h>
73#include <nlist.h>
74#include <stdio.h>
75#include <stdlib.h>

--- 504 unchanged lines hidden ---