svn commit: r189352 - head/include

David Schultz das at FreeBSD.org
Tue Mar 3 19:32:57 PST 2009


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
 


More information about the svn-src-all mailing list