From owner-svn-src-all@FreeBSD.ORG Wed Jun 30 18:03:42 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 970771065672; Wed, 30 Jun 2010 18:03:42 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 839888FC13; Wed, 30 Jun 2010 18:03:42 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o5UI3gc6020086; Wed, 30 Jun 2010 18:03:42 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o5UI3gIA020070; Wed, 30 Jun 2010 18:03:42 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <201006301803.o5UI3gIA020070@svn.freebsd.org> From: John Baldwin Date: Wed, 30 Jun 2010 18:03:42 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r209613 - in head/sys: amd64/amd64 amd64/ia32 arm/arm i386/i386 ia64/ia64 kern mips/mips pc98/pc98 powerpc/aim powerpc/booke sparc64/sparc64 sun4v/sun4v sys X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jun 2010 18:03:42 -0000 Author: jhb Date: Wed Jun 30 18:03:42 2010 New Revision: 209613 URL: http://svn.freebsd.org/changeset/base/209613 Log: Move prototypes for kern_sigtimedwait() and kern_sigprocmask() to where all other kern_ prototypes live. Modified: head/sys/amd64/amd64/machdep.c head/sys/amd64/ia32/ia32_signal.c head/sys/arm/arm/machdep.c head/sys/i386/i386/machdep.c head/sys/ia64/ia64/machdep.c head/sys/kern/kern_context.c head/sys/kern/subr_trap.c head/sys/mips/mips/pm_machdep.c head/sys/pc98/pc98/machdep.c head/sys/powerpc/aim/machdep.c head/sys/powerpc/booke/machdep.c head/sys/sparc64/sparc64/machdep.c head/sys/sun4v/sun4v/machdep.c head/sys/sys/signalvar.h head/sys/sys/syscallsubr.h Modified: head/sys/amd64/amd64/machdep.c ============================================================================== --- head/sys/amd64/amd64/machdep.c Wed Jun 30 18:00:45 2010 (r209612) +++ head/sys/amd64/amd64/machdep.c Wed Jun 30 18:03:42 2010 (r209613) @@ -81,6 +81,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/amd64/ia32/ia32_signal.c ============================================================================== --- head/sys/amd64/ia32/ia32_signal.c Wed Jun 30 18:00:45 2010 (r209612) +++ head/sys/amd64/ia32/ia32_signal.c Wed Jun 30 18:03:42 2010 (r209613) @@ -55,6 +55,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/arm/arm/machdep.c ============================================================================== --- head/sys/arm/arm/machdep.c Wed Jun 30 18:00:45 2010 (r209612) +++ head/sys/arm/arm/machdep.c Wed Jun 30 18:03:42 2010 (r209613) @@ -67,6 +67,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/i386/i386/machdep.c ============================================================================== --- head/sys/i386/i386/machdep.c Wed Jun 30 18:00:45 2010 (r209612) +++ head/sys/i386/i386/machdep.c Wed Jun 30 18:03:42 2010 (r209613) @@ -81,6 +81,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/ia64/ia64/machdep.c ============================================================================== --- head/sys/ia64/ia64/machdep.c Wed Jun 30 18:00:45 2010 (r209612) +++ head/sys/ia64/ia64/machdep.c Wed Jun 30 18:03:42 2010 (r209613) @@ -59,6 +59,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/kern/kern_context.c ============================================================================== --- head/sys/kern/kern_context.c Wed Jun 30 18:00:45 2010 (r209612) +++ head/sys/kern/kern_context.c Wed Jun 30 18:03:42 2010 (r209613) @@ -32,6 +32,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/kern/subr_trap.c ============================================================================== --- head/sys/kern/subr_trap.c Wed Jun 30 18:00:45 2010 (r209612) +++ head/sys/kern/subr_trap.c Wed Jun 30 18:03:42 2010 (r209613) @@ -62,6 +62,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/mips/mips/pm_machdep.c ============================================================================== --- head/sys/mips/mips/pm_machdep.c Wed Jun 30 18:00:45 2010 (r209612) +++ head/sys/mips/mips/pm_machdep.c Wed Jun 30 18:03:42 2010 (r209613) @@ -51,6 +51,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/pc98/pc98/machdep.c ============================================================================== --- head/sys/pc98/pc98/machdep.c Wed Jun 30 18:00:45 2010 (r209612) +++ head/sys/pc98/pc98/machdep.c Wed Jun 30 18:03:42 2010 (r209613) @@ -79,6 +79,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/powerpc/aim/machdep.c ============================================================================== --- head/sys/powerpc/aim/machdep.c Wed Jun 30 18:00:45 2010 (r209612) +++ head/sys/powerpc/aim/machdep.c Wed Jun 30 18:03:42 2010 (r209613) @@ -85,6 +85,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/powerpc/booke/machdep.c ============================================================================== --- head/sys/powerpc/booke/machdep.c Wed Jun 30 18:00:45 2010 (r209612) +++ head/sys/powerpc/booke/machdep.c Wed Jun 30 18:03:42 2010 (r209613) @@ -104,6 +104,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/sparc64/sparc64/machdep.c ============================================================================== --- head/sys/sparc64/sparc64/machdep.c Wed Jun 30 18:00:45 2010 (r209612) +++ head/sys/sparc64/sparc64/machdep.c Wed Jun 30 18:03:42 2010 (r209613) @@ -68,6 +68,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/sun4v/sun4v/machdep.c ============================================================================== --- head/sys/sun4v/sun4v/machdep.c Wed Jun 30 18:00:45 2010 (r209612) +++ head/sys/sun4v/sun4v/machdep.c Wed Jun 30 18:03:42 2010 (r209613) @@ -68,6 +68,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: head/sys/sys/signalvar.h ============================================================================== --- head/sys/sys/signalvar.h Wed Jun 30 18:00:45 2010 (r209612) +++ head/sys/sys/signalvar.h Wed Jun 30 18:03:42 2010 (r209613) @@ -357,10 +357,7 @@ void tdksignal(struct thread *td, int si void tdsigcleanup(struct thread *td); void tdsignal(struct thread *td, int sig); void trapsignal(struct thread *td, ksiginfo_t *); -int kern_sigtimedwait(struct thread *, sigset_t, - ksiginfo_t *, struct timespec *); -int kern_sigprocmask(struct thread *td, int how, - sigset_t *set, sigset_t *oset, int flags); + /* * Machine-dependent functions: */ Modified: head/sys/sys/syscallsubr.h ============================================================================== --- head/sys/sys/syscallsubr.h Wed Jun 30 18:00:45 2010 (r209612) +++ head/sys/sys/syscallsubr.h Wed Jun 30 18:03:42 2010 (r209613) @@ -48,6 +48,7 @@ struct sockaddr; struct stat; struct kevent; struct kevent_copyops; +struct ksiginfo; struct sendfile_args; struct thr_param; @@ -192,7 +193,11 @@ int kern_shmctl(struct thread *td, int s int kern_sigaction(struct thread *td, int sig, struct sigaction *act, struct sigaction *oact, int flags); int kern_sigaltstack(struct thread *td, stack_t *ss, stack_t *oss); +int kern_sigprocmask(struct thread *td, int how, + sigset_t *set, sigset_t *oset, int flags); int kern_sigsuspend(struct thread *td, sigset_t mask); +int kern_sigtimedwait(struct thread *td, sigset_t waitset, + struct ksiginfo *ksi, struct timespec *timeout); int kern_stat(struct thread *td, char *path, enum uio_seg pathseg, struct stat *sbp); int kern_statat(struct thread *td, int flag, int fd, char *path,