]> granicus.if.org Git - libevent/commitdiff
describe signal_*
authorNiels Provos <provos@gmail.com>
Wed, 10 Apr 2002 02:20:26 +0000 (02:20 +0000)
committerNiels Provos <provos@gmail.com>
Wed, 10 Apr 2002 02:20:26 +0000 (02:20 +0000)
svn:r19

event.3

diff --git a/event.3 b/event.3
index 287dd7f1be67e74428901529de702a6332fb2fa3..ca11fee344094bbd65a4d8d86aeef9b576ba53a2 100644 (file)
--- a/event.3
+++ b/event.3
 .Nm timeout_del
 .Nm timeout_pending ,
 .Nm timeout_initalized ,
+.Nm signal_set ,
+.Nm signal_add ,
+.Nm signal_del
+.Nm signal_pending ,
+.Nm signal_initalized ,
 .Nd execute a function when a specific event occurs
 .Sh SYNOPSIS
 .Fd #include <event.h>
 .Fn "timeout_pending" "struct event *ev" "struct timeval *tv"
 .Ft int
 .Fn "timeout_initialized" "struct event *ev"
+.Ft void
+.Fn "signal_set" "struct event *ev" "int signal" "void (*fn)(int, short, void *)" "void *arg"
+.Ft void
+.Fn "signal_add" "struct event *ev" "struct timeval *"
+.Ft void
+.Fn "signal_del" "struct event *ev"
+.Ft int
+.Fn "signal_pending" "struct event *ev" "struct timeval *tv"
+.Ft int
+.Fn "signal_initialized" "struct event *ev"
 .Ft int
 .Fa (*event_sigcb)(void) ;
 .Ft int
@@ -165,13 +180,21 @@ The function
 will be called with the file descriptor that triggered the event and
 the type of event which will be either
 .Va EV_TIMEOUT ,
+.Va EV_SIGNAL ,
 .Va EV_READ ,
 or
 .Va EV_WRITE .
+The additional flag
+.Va EV_PERSIST
+makes an
+.Fn event_add
+persistent until
+.Fn event_del
+has been called.
 .Pp
 Once initialized, the
 .Fa ev
-structure can be used in repeatedly in
+structure can be used repeatedly with
 .Fn event_add
 and
 .Fn event_del
@@ -239,9 +262,25 @@ are abbreviations for common situations where only a timeout is required.
 The file descriptor passed will be 0, and the event type will be
 .Va EV_TIMEOUT .
 .Pp
+.Pp
+The functions
+.Fn signal_set ,
+.Fn signal_add ,
+.Fn signal_del ,
+.Fn signal_initialized ,
+and
+.Fn signal_pending
+are abbreviations.
+The event type will be a persistent
+.Va EV_SIGNAL .
+That means
+.Fn signal_set
+adds
+.Va EV_PERSIST .
+.Pp
 It is possible to disable support for
 .Va kqueue
-but setting the environment variable
+by setting the environment variable
 .Va EVENT_NOKQUEUE .
 .Pp
 .Sh RETURN VALUES