Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/kern/kern_sig.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/kern/kern_sig.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.247 retrieving revision 1.248 diff -u -p -r1.247 -r1.248 --- src/sys/kern/kern_sig.c 2007/02/20 17:47:03 1.247 +++ src/sys/kern/kern_sig.c 2007/02/21 23:48:14 1.248 @@ -1,4 +1,4 @@ -/* $NetBSD: kern_sig.c,v 1.247 2007/02/20 17:47:03 ad Exp $ */ +/* $NetBSD: kern_sig.c,v 1.248 2007/02/21 23:48:14 thorpej Exp $ */ /*- * Copyright (c) 2006, 2007 The NetBSD Foundation, Inc. @@ -73,7 +73,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: kern_sig.c,v 1.247 2007/02/20 17:47:03 ad Exp $"); +__KERNEL_RCSID(0, "$NetBSD: kern_sig.c,v 1.248 2007/02/21 23:48:14 thorpej Exp $"); #include "opt_ktrace.h" #include "opt_ptrace.h" @@ -117,7 +117,7 @@ int sigunwait(struct proc *, const ksigi void sigput(sigpend_t *, struct proc *, ksiginfo_t *); int sigpost(struct lwp *, sig_t, int, int); int sigchecktrace(sigpend_t **); -void sigswitch(boolean_t, int, int); +void sigswitch(bool, int, int); void sigrealloc(ksiginfo_t *); sigset_t contsigmask, stopsigmask, sigcantmask; @@ -1456,7 +1456,7 @@ kpsendsig(struct lwp *l, const ksiginfo_ * Stop the current process and switch away when being stopped or traced. */ void -sigswitch(boolean_t ppsig, int ppmask, int signo) +sigswitch(bool ppsig, int ppmask, int signo) { struct lwp *l = curlwp, *l2; struct proc *p = l->l_proc; @@ -2073,7 +2073,7 @@ proc_stop(struct proc *p, int notify, in static void proc_stop_callout(void *cookie) { - boolean_t more, restart; + bool more, restart; struct proc *p; struct lwp *l;