Deleted Added
full compact
kvm_private.h (1574) kvm_private.h (1856)
1/*-
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software developed by the Computer Systems
6 * Engineering group at Lawrence Berkeley Laboratory under DARPA contract
7 * BG 91-66 and contributed to Berkeley.
8 *

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

46 const char *program;
47 char *errp; /* XXX this can probably go away */
48 char errbuf[_POSIX2_LINE_MAX];
49 DB *db;
50#define ISALIVE(kd) ((kd)->vmfd >= 0)
51 int pmfd; /* physical memory file (or crashdump) */
52 int vmfd; /* virtual memory file (-1 if crashdump) */
53 int swfd; /* swap file (e.g., /dev/drum) */
1/*-
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software developed by the Computer Systems
6 * Engineering group at Lawrence Berkeley Laboratory under DARPA contract
7 * BG 91-66 and contributed to Berkeley.
8 *

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

46 const char *program;
47 char *errp; /* XXX this can probably go away */
48 char errbuf[_POSIX2_LINE_MAX];
49 DB *db;
50#define ISALIVE(kd) ((kd)->vmfd >= 0)
51 int pmfd; /* physical memory file (or crashdump) */
52 int vmfd; /* virtual memory file (-1 if crashdump) */
53 int swfd; /* swap file (e.g., /dev/drum) */
54 int nlfd; /* namelist file (e.g., /vmunix) */
54 int nlfd; /* namelist file (e.g., /kernel) */
55 struct kinfo_proc *procbase;
56 char *argspc; /* (dynamic) storage for argv strings */
57 int arglen; /* length of the above */
58 char **argv; /* (dynamic) storage for argv pointers */
59 int argc; /* length of above (not actual # present) */
60 /*
61 * Kernel virtual address translation state. This only gets filled
62 * in for dead kernels; otherwise, the running kernel (i.e. kmem)

--- 19 unchanged lines hidden ---
55 struct kinfo_proc *procbase;
56 char *argspc; /* (dynamic) storage for argv strings */
57 int arglen; /* length of the above */
58 char **argv; /* (dynamic) storage for argv pointers */
59 int argc; /* length of above (not actual # present) */
60 /*
61 * Kernel virtual address translation state. This only gets filled
62 * in for dead kernels; otherwise, the running kernel (i.e. kmem)

--- 19 unchanged lines hidden ---