Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/sys add sigqueue.



details:   https://anonhg.NetBSD.org/src/rev/70d5e8b0f452
branches:  trunk
changeset: 760639:70d5e8b0f452
user:      christos <christos%NetBSD.org@localhost>
date:      Mon Jan 10 04:38:37 2011 +0000

description:
add sigqueue.

diffstat:

 sys/sys/signal.h |  4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diffs (17 lines):

diff -r e3bc30dcc5e4 -r 70d5e8b0f452 sys/sys/signal.h
--- a/sys/sys/signal.h  Sun Jan 09 23:17:36 2011 +0000
+++ b/sys/sys/signal.h  Mon Jan 10 04:38:37 2011 +0000
@@ -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_ */



Home | Main Index | Thread Index | Old Index