2 * Copyright (c) 1997 - 1999, 2001 Brian Somers <brian@Awfulhak.org>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * $FreeBSD: src/usr.sbin/ppp/sig.c,v 1.15.2.1 2002/09/01 02:12:32 brian Exp $
27 * $DragonFly: src/usr.sbin/ppp/sig.c,v 1.4 2005/11/24 23:42:54 swildner Exp $
30 #include <sys/types.h>
37 static int caused
[NSIG
]; /* An array of pending signals */
38 static int necessary
; /* Anything set ? */
39 static sig_type handler
[NSIG
]; /* all start at SIG_DFL */
43 * Record a signal in the "caused" array
45 * This function is the only thing actually called in signal context. It
46 * records that a signal has been caused and that sig_Handle() should be
47 * called (in non-signal context) as soon as possible to process that
51 signal_recorder(int sig
)
59 * Set up signal_recorder to handle the given sig and record ``fn'' as
60 * the function to ultimately call in sig_Handle(). ``fn'' will not be
61 * called in signal context (as sig_Handle() is not called in signal
65 sig_signal(int sig
, sig_type fn
)
69 if (sig
<= 0 || sig
>= NSIG
) {
70 /* Oops - we must be a bit out of date (too many sigs ?) */
71 log_Printf(LogALERT
, "Eeek! %s:%d: I must be out of date!\n",
73 return signal(sig
, fn
);
75 Result
= handler
[sig
- 1];
76 if (fn
== SIG_DFL
|| fn
== SIG_IGN
) {
78 handler
[sig
- 1] = (sig_type
) 0;
80 handler
[sig
- 1] = fn
;
81 signal(sig
, signal_recorder
);
89 * Call the handlers for any pending signals
91 * This function is called from a non-signal context - in fact, it's
92 * called every time select() in DoLoop() returns - just in case
93 * select() returned due to a signal being recorded by signal_recorder().
104 /* We've *probably* got something in `caused' set */
106 /* `necessary' might go back to 1 while we're in here.... */
109 for (sig
= 0; sig
< NSIG
; sig
++)
114 (*handler
[sig
])(sig
+ 1);