defopt SYSCALL_DEBUG.

This commit is contained in:
soren 2000-06-06 18:26:32 +00:00
parent ff01cf4808
commit 14573dc679
4 changed files with 10 additions and 5 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: files,v 1.371 2000/06/04 16:26:12 mycroft Exp $
# $NetBSD: files,v 1.372 2000/06/06 18:26:32 soren Exp $
# @(#)files.newconf 7.5 (Berkeley) 5/10/93
@ -8,7 +8,6 @@ defopt INSECURE
defopt KMEMSTATS
defopt KTRACE
defopt MAXUPRC
defopt LOCKDEBUG
defopt RTC_OFFSET
defopt DEFCORENAME
defopt UCONSOLE
@ -117,6 +116,8 @@ defopt opt_mbr.h COMPAT_386BSD_MBRPART
# debugging options
defopt DDB
defopt opt_ddbparam.h DDB_FROMCONSOLE DDB_ONPANIC DDB_HISTORY_SIZE
defopt LOCKDEBUG
defopt SYSCALL_DEBUG
# memory (ram) disk options
defopt opt_md.h MEMORY_DISK_HOOKS MEMORY_DISK_SERVER MEMORY_DISK_IS_ROOT

View File

@ -1,4 +1,4 @@
/* $NetBSD: exec_elf32.c,v 1.48 2000/04/11 04:37:50 chs Exp $ */
/* $NetBSD: exec_elf32.c,v 1.49 2000/06/06 18:26:34 soren Exp $ */
/*-
* Copyright (c) 1994 The NetBSD Foundation, Inc.
@ -73,6 +73,7 @@
#include "opt_compat_svr4.h"
#include "opt_compat_freebsd.h"
#include "opt_compat_netbsd32.h"
#include "opt_syscall_debug.h"
#include <sys/param.h>
#include <sys/systm.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: init_main.c,v 1.171 2000/05/31 05:02:31 thorpej Exp $ */
/* $NetBSD: init_main.c,v 1.172 2000/06/06 18:26:35 soren Exp $ */
/*
* Copyright (c) 1995 Christopher G. Demetriou. All rights reserved.
@ -46,6 +46,7 @@
#include "opt_sysv.h"
#include "opt_maxuprc.h"
#include "opt_multiprocessor.h"
#include "opt_syscall_debug.h"
#include "rnd.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: kern_xxx.c,v 1.42 1998/03/01 02:22:31 fvdl Exp $ */
/* $NetBSD: kern_xxx.c,v 1.43 2000/06/06 18:26:36 soren Exp $ */
/*
* Copyright (c) 1982, 1986, 1989, 1993
@ -35,6 +35,8 @@
* @(#)kern_xxx.c 8.3 (Berkeley) 2/14/95
*/
#include "opt_syscall_debug.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>