diff options
author | joerg <joerg@FreeBSD.org> | 1996-06-30 09:39:29 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 1996-06-30 09:39:29 +0000 |
commit | 17f10d8a383e0b59b87f539426f47bd708c65839 (patch) | |
tree | b47760290da58cb676e10818d9384ee2f9e916e1 /sys/amd64/conf | |
parent | f333befaa9528c64fa23bd1c3c734d466606010f (diff) | |
download | FreeBSD-src-17f10d8a383e0b59b87f539426f47bd708c65839.zip FreeBSD-src-17f10d8a383e0b59b87f539426f47bd708c65839.tar.gz |
Enable ktrace by default, accompanied by a small reminder about the
implications (4 KB bloat, slight slowdown of syscalls).
Reviewed by: freebsd-hackers
Diffstat (limited to 'sys/amd64/conf')
-rw-r--r-- | sys/amd64/conf/GENERIC | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/amd64/conf/GENERIC b/sys/amd64/conf/GENERIC index d5ed7ff..1d92782 100644 --- a/sys/amd64/conf/GENERIC +++ b/sys/amd64/conf/GENERIC @@ -1,7 +1,7 @@ # # GENERIC -- Generic machine with WD/AHx/NCR/BTx family disks # -# $Id: GENERIC,v 1.70 1996/05/13 04:29:13 nate Exp $ +# $Id: GENERIC,v 1.71 1996/06/16 20:04:44 joerg Exp $ # machine "i386" @@ -143,5 +143,10 @@ pseudo-device sl 1 #pseudo-device ppp 1 pseudo-device tun 1 pseudo-device pty 16 -# keep this if you want to be able to continue to use /stand/sysinstall pseudo-device gzip # Exec gzipped a.out's + +# KTRACE enables the system-call tracing facility ktrace(2). +# This adds 4 KB bloat to your kernel, and slightly increases +# the costs of each syscall. +options KTRACE #kernel tracing + |