Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 4 Mar 2009 03:32:56 +0000 (UTC)
From:      David Schultz <das@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r189352 - head/include
Message-ID:  <200903040332.n243WuGm030489@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: das
Date: Wed Mar  4 03:32:56 2009
New Revision: 189352
URL: http://svn.freebsd.org/changeset/base/189352

Log:
  Add psignal to the POSIX.1-2008 namespace.

Modified:
  head/include/signal.h

Modified: head/include/signal.h
==============================================================================
--- head/include/signal.h	Wed Mar  4 03:32:28 2009	(r189351)
+++ head/include/signal.h	Wed Mar  4 03:32:56 2009	(r189352)
@@ -95,6 +95,10 @@ int	sigpause(int);
 int	siginterrupt(int, int);
 #endif
 
+#if __POSIX_VISIBLE >= 200809 || __BSD_VISIBLE
+void	psignal(unsigned int, const char *);
+#endif
+
 #if __BSD_VISIBLE
 int	sigblock(int);
 struct __ucontext;		/* XXX spec requires a complete declaration. */
@@ -102,7 +106,6 @@ int	sigreturn(const struct __ucontext *)
 int	sigsetmask(int);
 int	sigstack(const struct sigstack *, struct sigstack *);
 int	sigvec(int, struct sigvec *, struct sigvec *);
-void	psignal(unsigned int, const char *);
 #endif
 __END_DECLS
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200903040332.n243WuGm030489>