defflag DEBUG_EXEC

This commit is contained in:
jmcneill 2011-08-26 19:07:13 +00:00
parent edd34c0a58
commit 1501db31c9
2 changed files with 6 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: files,v 1.1024 2011/08/09 01:42:24 jmcneill Exp $
# $NetBSD: files,v 1.1025 2011/08/26 19:07:13 jmcneill Exp $
# @(#)files.newconf 7.5 (Berkeley) 5/10/93
version 20100430
@ -78,6 +78,8 @@ defparam opt_poollog.h POOL_LOGSIZE
defflag opt_revcache.h NAMECACHE_ENTER_REVERSE
defflag opt_exec.h DEBUG_EXEC
defflag opt_execfmt.h EXEC_AOUT EXEC_COFF EXEC_ECOFF EXEC_ELF32
EXEC_ELF64 EXEC_SCRIPT
EXEC_ELF_NOTELESS

View File

@ -1,4 +1,4 @@
/* $NetBSD: kern_exec.c,v 1.324 2011/08/26 12:52:01 jmcneill Exp $ */
/* $NetBSD: kern_exec.c,v 1.325 2011/08/26 19:07:13 jmcneill Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@ -59,8 +59,9 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: kern_exec.c,v 1.324 2011/08/26 12:52:01 jmcneill Exp $");
__KERNEL_RCSID(0, "$NetBSD: kern_exec.c,v 1.325 2011/08/26 19:07:13 jmcneill Exp $");
#include "opt_exec.h"
#include "opt_ktrace.h"
#include "opt_modular.h"
#include "opt_syscall_debug.h"