mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Added undocumented option DEBUG so that debugging code gets maintained
or deleted. Motivated by: `int doclusteread = 1;' in ext2_vnops.c redefined doclusterread if DEBUG is defined, so it could not have worked. This was fixed by staticizing things before it caused problems. I didn't find any more cases like this.
This commit is contained in:
parent
e390090674
commit
439187de6b
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=12979
3 changed files with 6 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
|||
# LINT -- config file for checking all the sources, tries to pull in
|
||||
# as much of the source tree as it can.
|
||||
#
|
||||
# $Id: LINT,v 1.223 1995/12/16 02:19:17 bde Exp $
|
||||
# $Id: LINT,v 1.224 1995/12/16 21:00:14 bde Exp $
|
||||
#
|
||||
# NB: You probably don't want to try running a kernel built from this
|
||||
# file. Instead, you should start from GENERIC, and add options from
|
||||
|
@ -843,6 +843,7 @@ options POWERFAIL_NMI # make it beep instead of panicing
|
|||
# More undocumented options for linting.
|
||||
|
||||
options COMPAT_LINUX
|
||||
options DEBUG
|
||||
options "EXT2FS"
|
||||
options "IBCS2"
|
||||
options LINUX
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# LINT -- config file for checking all the sources, tries to pull in
|
||||
# as much of the source tree as it can.
|
||||
#
|
||||
# $Id: LINT,v 1.223 1995/12/16 02:19:17 bde Exp $
|
||||
# $Id: LINT,v 1.224 1995/12/16 21:00:14 bde Exp $
|
||||
#
|
||||
# NB: You probably don't want to try running a kernel built from this
|
||||
# file. Instead, you should start from GENERIC, and add options from
|
||||
|
@ -843,6 +843,7 @@ options POWERFAIL_NMI # make it beep instead of panicing
|
|||
# More undocumented options for linting.
|
||||
|
||||
options COMPAT_LINUX
|
||||
options DEBUG
|
||||
options "EXT2FS"
|
||||
options "IBCS2"
|
||||
options LINUX
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# LINT -- config file for checking all the sources, tries to pull in
|
||||
# as much of the source tree as it can.
|
||||
#
|
||||
# $Id: LINT,v 1.223 1995/12/16 02:19:17 bde Exp $
|
||||
# $Id: LINT,v 1.224 1995/12/16 21:00:14 bde Exp $
|
||||
#
|
||||
# NB: You probably don't want to try running a kernel built from this
|
||||
# file. Instead, you should start from GENERIC, and add options from
|
||||
|
@ -843,6 +843,7 @@ options POWERFAIL_NMI # make it beep instead of panicing
|
|||
# More undocumented options for linting.
|
||||
|
||||
options COMPAT_LINUX
|
||||
options DEBUG
|
||||
options "EXT2FS"
|
||||
options "IBCS2"
|
||||
options LINUX
|
||||
|
|
Loading…
Reference in a new issue