diff options
author | dg <dg@FreeBSD.org> | 1994-08-05 09:14:37 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1994-08-05 09:14:37 +0000 |
commit | 6b466831f41965b3c04e37a06388e031c03316b6 (patch) | |
tree | 242b5d9154977fcfbc3e9f84dd0d6851c367a897 /lib | |
parent | 57ea13e98c2c8a39a0a8fb034ee3cb0f3654d591 (diff) | |
download | FreeBSD-src-6b466831f41965b3c04e37a06388e031c03316b6.zip FreeBSD-src-6b466831f41965b3c04e37a06388e031c03316b6.tar.gz |
Converted 'vmunix' to 'kernel'.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/sys/reboot.2 | 4 | ||||
-rw-r--r-- | lib/libkvm/kvm.c | 2 | ||||
-rw-r--r-- | lib/libkvm/kvm_nlist.3 | 4 | ||||
-rw-r--r-- | lib/libkvm/kvm_private.h | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/lib/libc/sys/reboot.2 b/lib/libc/sys/reboot.2 index 317c139..0db9ea2 100644 --- a/lib/libc/sys/reboot.2 +++ b/lib/libc/sys/reboot.2 @@ -62,7 +62,7 @@ The default, causing the system to reboot in its usual fashion. Interpreted by the bootstrap program itself, causing it to prompt on the console as to what file should be booted. Normally, the system is booted from the file -.Dq Em xx Ns No (0,0)vmunix , +.Dq Em xx Ns No (0,0)kernel , where .Em xx is the default disk name, @@ -123,7 +123,7 @@ program in the newly booted system. When no options are given (i.e., .Dv RB_AUTOBOOT is used), the system is -rebooted from file ``vmunix'' in the root file system of unit 0 +rebooted from file ``kernel'' in the root file system of unit 0 of a disk chosen in a processor specific way. An automatic consistency check of the disks is normally performed (see diff --git a/lib/libkvm/kvm.c b/lib/libkvm/kvm.c index a76f61e..56ab485 100644 --- a/lib/libkvm/kvm.c +++ b/lib/libkvm/kvm.c @@ -226,7 +226,7 @@ _kvm_open(kd, uf, mf, sf, flag, errout) } /* * Open kvm nlist database. We go ahead and do this - * here so that we don't have to hold on to the vmunix + * here so that we don't have to hold on to the kernel * path name. Since a kvm application will surely do * a kvm_nlist(), this probably won't be a wasted effort. * If the database cannot be opened, open the namelist diff --git a/lib/libkvm/kvm_nlist.3 b/lib/libkvm/kvm_nlist.3 index 1c0cd89..f620f55 100644 --- a/lib/libkvm/kvm_nlist.3 +++ b/lib/libkvm/kvm_nlist.3 @@ -71,8 +71,8 @@ The function returns the number of invalid entries found. If the kernel symbol table was unreadable, -1 is returned. .Sh FILES -.Bl -tag -width /var/db/kvm_vmunix.db -compact -.It Pa /var/db/kvm_vmunix.db +.Bl -tag -width /var/db/kvm_kernel.db -compact +.It Pa /var/db/kvm_kernel.db .El .Sh SEE ALSO .Xr kvm 3 , diff --git a/lib/libkvm/kvm_private.h b/lib/libkvm/kvm_private.h index baaeb05..5df73eb 100644 --- a/lib/libkvm/kvm_private.h +++ b/lib/libkvm/kvm_private.h @@ -51,7 +51,7 @@ struct __kvm { int pmfd; /* physical memory file (or crashdump) */ int vmfd; /* virtual memory file (-1 if crashdump) */ int swfd; /* swap file (e.g., /dev/drum) */ - int nlfd; /* namelist file (e.g., /vmunix) */ + int nlfd; /* namelist file (e.g., /kernel) */ struct kinfo_proc *procbase; char *argspc; /* (dynamic) storage for argv strings */ int arglen; /* length of the above */ |