]> git.pond.sub.org Git - empserver/blob - src/lib/lwp/sig.c
104478e6633f220011dd04482fb7c0ab64437c90
[empserver] / src / lib / lwp / sig.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1994-2006, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  sig.c: Wait for signals
29  * 
30  *  Known contributors to this file:
31  *     Markus Armbruster, 2006
32  */
33
34 #include <config.h>
35
36 #include <errno.h>
37 #include <signal.h>
38 #include "lwp.h"
39 #include "lwpint.h"
40
41 /* Signals awaited by lwpSigWait() */
42 static sigset_t *LwpSigAwaited;
43
44 /*
45  * Signals from LwpSigAwaited catched so far
46  * Access only with signals blocked!
47  */
48 static sigset_t LwpSigCatched;
49
50 /* The thread waiting for signals in lwpSigWait() */
51 static struct lwpProc *LwpSigWaiter;
52
53 /* Where to return the signal number to the thread in lwpSigWait() */
54 static int *LwpSigPtr;
55
56 static void lwpCatchAwaitedSig(int);
57
58 /*
59  * Initialize waiting for signals in SET.
60  */
61 void
62 lwpInitSigWait(sigset_t *set)
63 {
64     struct sigaction act;
65     int i;
66
67     sigemptyset(&LwpSigCatched);
68
69     act.sa_flags = 0;
70     act.sa_mask = *set;
71     sigemptyset(&act.sa_mask);
72     act.sa_handler = lwpCatchAwaitedSig;
73     for (i = 0; i < NSIG; i++) {
74         if (sigismember(set, i))
75             sigaction(i, &act, NULL);
76     }
77 }
78
79 static void
80 lwpCatchAwaitedSig(int sig)
81 {
82     sigaddset(&LwpSigCatched, sig);
83 }
84
85 /*
86  * Test whether a signal from SET has been catched.
87  * If yes, delete that signal from the set of catched signals, and
88  * return its number.
89  * Else return 0.
90  */
91 static int
92 lwpGetSig(sigset_t *set)
93 {
94     sigset_t save;
95     int i;
96
97     sigprocmask(SIG_BLOCK, set, &save);
98     for (i = NSIG - 1; i > 0; i--) {
99         if (sigismember(set, i) && sigismember(&LwpSigCatched, i)) {
100             lwpStatus(LwpCurrent, "Got awaited signal %d", i);
101             sigdelset(&LwpSigCatched, i);
102             break;
103         }
104     }
105     sigprocmask(SIG_SETMASK, &save, NULL);
106     return i;
107 }
108
109 /*
110  * Wait until a signal from SET arrives.
111  * Assign its number to *SIG and return 0.
112  * If another thread is already waiting for signals, return EBUSY
113  * without waiting.
114  */
115 int
116 lwpSigWait(sigset_t *set, int *sig)
117 {
118     int res;
119
120     if (CANT_HAPPEN(LwpSigWaiter))
121         return EBUSY;
122     res = lwpGetSig(set);
123     if (res <= 0) {
124         lwpStatus(LwpCurrent, "Waiting for signals");
125         LwpSigAwaited = set;
126         LwpSigPtr = sig;
127         LwpSigWaiter = LwpCurrent;
128         lwpReschedule();
129         return 0;
130     }
131     *sig = res;
132     return 0;
133 }
134
135 /*
136  * Wake up the thread awaiting signals if one arrived.
137  * To be called from lwpReschedule().
138  */
139 void
140 lwpSigWakeup(void)
141 {
142     int res;
143
144     if (!LwpSigWaiter)
145         return;
146     res = lwpGetSig(LwpSigAwaited);
147     if (res > 0) {
148         *LwpSigPtr = res;
149         lwpReady(LwpSigWaiter);
150         LwpSigWaiter = NULL;
151     }
152 }