Module Name: src
Committed By: yamt
Date: Sun Jun 13 04:08:49 UTC 2010
Modified Files:
src/sys/compat/irix: irix_exec.c
Log Message:
remove an unnecessary check of PK_MARKER
To generate a diff of this commit:
cvs rdiff -u -r1.56 -r1.57 src/sys/compat/irix/irix_exec.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/compat/irix/irix_exec.c
diff -u src/sys/compat/irix/irix_exec.c:1.56 src/sys/compat/irix/irix_exec.c:1.57
--- src/sys/compat/irix/irix_exec.c:1.56 Mon Dec 14 00:47:10 2009
+++ src/sys/compat/irix/irix_exec.c Sun Jun 13 04:08:49 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: irix_exec.c,v 1.56 2009/12/14 00:47:10 matt Exp $ */
+/* $NetBSD: irix_exec.c,v 1.57 2010/06/13 04:08:49 yamt Exp $ */
/*-
* Copyright (c) 2001-2002 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: irix_exec.c,v 1.56 2009/12/14 00:47:10 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: irix_exec.c,v 1.57 2010/06/13 04:08:49 yamt Exp $");
#ifdef _KERNEL_OPT
#include "opt_syscall_debug.h"
@@ -190,8 +190,6 @@
*/
mutex_enter(proc_lock);
PROCLIST_FOREACH(pp, &allproc) {
- if ((pp->p_flag & PK_MARKER) != 0)
- continue;
/* Select IRIX processes */
if (irix_check_exec(pp) == 0)
continue;