diff options
| author | 2003-06-28 01:52:29 +0000 | |
|---|---|---|
| committer | 2003-06-28 01:52:29 +0000 | |
| commit | ce9f5aad50f1f73248f586c56cd6a80cd32d5490 (patch) | |
| tree | da3b31a6ab8c3bd9bf7c111cd3d22c4d3499ce9a | |
| parent | option to log ddb output to kernel message buffer, via sysctl ddb.log (diff) | |
| download | wireguard-openbsd-ce9f5aad50f1f73248f586c56cd6a80cd32d5490.tar.xz wireguard-openbsd-ce9f5aad50f1f73248f586c56cd6a80cd32d5490.zip | |
new sysctl, ddb.log
| -rw-r--r-- | lib/libc/gen/sysctl.3 | 5 | ||||
| -rw-r--r-- | sbin/sysctl/sysctl.8 | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lib/libc/gen/sysctl.3 b/lib/libc/gen/sysctl.3 index 95bf04fb4b4..52983065cb4 100644 --- a/lib/libc/gen/sysctl.3 +++ b/lib/libc/gen/sysctl.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: sysctl.3,v 1.104 2003/06/02 20:18:35 millert Exp $ +.\" $OpenBSD: sysctl.3,v 1.105 2003/06/28 01:52:29 tedu Exp $ .\" .\" Copyright (c) 1993 .\" The Regents of the University of California. All rights reserved. @@ -1484,6 +1484,7 @@ More information is also available in .It Dv DBCTL_TABSTOP No " integer yes" .It Dv DBCTL_PANIC No " integer yes" .It Dv DBCTL_CONSOLE No " integer yes" +.It Dv DBCTL_LOG No " integer yes" .El .Pp .Bl -tag -width "123456" @@ -1514,6 +1515,8 @@ kernel debugger. As described in .Xr securelevel 7 , a security level greater than 1 blocks modification of this variable. +.It Dv DBCTL_LOG +When set, ddb output is also logged in the kernel message buffer. .El .Ss CTL_VM The string and integer information available for the diff --git a/sbin/sysctl/sysctl.8 b/sbin/sysctl/sysctl.8 index c52c0b428eb..a9e9d854a02 100644 --- a/sbin/sysctl/sysctl.8 +++ b/sbin/sysctl/sysctl.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: sysctl.8,v 1.102 2003/06/03 13:16:09 jmc Exp $ +.\" $OpenBSD: sysctl.8,v 1.103 2003/06/28 01:52:29 tedu Exp $ .\" $NetBSD: sysctl.8,v 1.4 1995/09/30 07:12:49 thorpej Exp $ .\" .\" Copyright (c) 1993 @@ -332,6 +332,7 @@ privilege can change the value. .It ddb.tab_stop_width integer yes .It ddb.panic integer yes .It ddb.console integer yes +.It ddb.log integer yes .It vfs.mounts.* struct no .It vfs.ffs.doclusterread integer yes .It vfs.ffs.doclusterwrite integer yes |
