Module Name:    src
Committed By:   christos
Date:           Mon Jan 10 04:38:38 UTC 2011

Modified Files:
        src/sys/sys: signal.h

Log Message:
add sigqueue.


To generate a diff of this commit:
cvs rdiff -u -r1.65 -r1.66 src/sys/sys/signal.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/sys/signal.h
diff -u src/sys/sys/signal.h:1.65 src/sys/sys/signal.h:1.66
--- src/sys/sys/signal.h:1.65	Wed Dec  9 15:26:12 2009
+++ src/sys/sys/signal.h	Sun Jan  9 23:38:37 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: signal.h,v 1.65 2009/12/09 20:26:12 drochner Exp $	*/
+/*	$NetBSD: signal.h,v 1.66 2011/01/10 04:38:37 christos Exp $	*/
 
 /*
  * Copyright (c) 1982, 1986, 1989, 1991, 1993
@@ -235,5 +235,7 @@
  */
 __BEGIN_DECLS
 void	(*signal(int, void (*)(int)))(int);
+int	sigqueue(pid_t, int, const union sigval);
+int	sigqueueinfo(pid_t, const siginfo_t *);
 __END_DECLS
 #endif	/* !_SYS_SIGNAL_H_ */

Reply via email to