Deleted Added
full compact
procstat_vm.c (174199) procstat_vm.c (176107)
1/*-
2 * Copyright (c) 2007 Robert N. M. Watson
3 * 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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2007 Robert N. M. Watson
3 * 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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/usr.bin/procstat/procstat_vm.c 174199 2007-12-02 23:31:45Z rwatson $
26 * $FreeBSD: head/usr.bin/procstat/procstat_vm.c 176107 2008-02-08 11:03:05Z dwmalone $
27 */
28
29#include <sys/types.h>
30#include <sys/sysctl.h>
31#include <sys/user.h>
32
33#include <err.h>
34#include <errno.h>
35#include <stdio.h>
36#include <stdlib.h>
37
38#include "procstat.h"
39
40void
27 */
28
29#include <sys/types.h>
30#include <sys/sysctl.h>
31#include <sys/user.h>
32
33#include <err.h>
34#include <errno.h>
35#include <stdio.h>
36#include <stdlib.h>
37
38#include "procstat.h"
39
40void
41procstat_vm(pid_t pid, struct kinfo_proc *kipp)
41procstat_vm(pid_t pid, struct kinfo_proc *kipp __unused)
42{
43 struct kinfo_vmentry *freep, *kve;
42{
43 struct kinfo_vmentry *freep, *kve;
44 int error, i, name[4], ptrwidth;
44 int error, name[4], ptrwidth;
45 unsigned int i;
45 const char *str;
46 size_t len;
47
48 ptrwidth = 2*sizeof(void *) + 2;
49 if (!hflag)
50 printf("%5s %*s %*s %3s %4s %4s %3s %3s %2s %-2s %-s\n",
51 "PID", ptrwidth, "START", ptrwidth, "END", "PRT", "RES",
52 "PRES", "REF", "SHD", "FL", "TP", "PATH");

--- 78 unchanged lines hidden ---
46 const char *str;
47 size_t len;
48
49 ptrwidth = 2*sizeof(void *) + 2;
50 if (!hflag)
51 printf("%5s %*s %*s %3s %4s %4s %3s %3s %2s %-2s %-s\n",
52 "PID", ptrwidth, "START", ptrwidth, "END", "PRT", "RES",
53 "PRES", "REF", "SHD", "FL", "TP", "PATH");

--- 78 unchanged lines hidden ---