]> git.pond.sub.org Git - empserver/blob - src/lib/empthread/lwp.c
(empth_init_signals): Don't catch SIGINT and SIGTERM.
[empserver] / src / lib / empthread / lwp.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-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  *  lwp.c: Interface from Empire threads to LWP threads
29  * 
30  *  Known contributors to this file:
31  *     Sasha Mikheev
32  */
33
34 #include <config.h>
35
36 #include <signal.h>
37 #include <time.h>
38 #include "empthread.h"
39
40 /* Flags that were passed to empth_init() */
41 static int empth_flags;
42
43
44 int
45 empth_init(void **ctx, int flags)
46 {
47     sigset_t set;
48
49     empth_flags = flags;
50     empth_init_signals();
51     sigemptyset(&set);
52     sigaddset(&set, SIGINT);
53     sigaddset(&set, SIGTERM);
54     lwpInitSystem(PP_MAIN, (char **)ctx, flags, &set);
55     return 0;
56 }
57
58
59 empth_t *
60 empth_create(int prio, void (*entry)(void *), int size, int flags,
61              char *name, char *desc, void *ud)
62 {
63     if (!flags)
64         flags = empth_flags;
65     return lwpCreate(prio, entry, size, flags, name, desc, 0, 0, ud);
66 }
67
68 empth_t *
69 empth_self(void)
70 {
71     return LwpCurrent;
72 }
73
74 void
75 empth_exit(void)
76 {
77     lwpExit();
78 }
79
80 void
81 empth_yield(void)
82 {
83     lwpYield();
84 }
85
86 void
87 empth_terminate(empth_t *a)
88 {
89     lwpTerminate(a);
90 }
91
92 void
93 empth_select(int fd, int flags)
94 {
95     lwpSleepFd(fd, flags);
96 }
97
98 void
99 empth_wakeup(empth_t *a)
100 {
101     lwpWakeupFd(a);
102 }
103
104 void
105 empth_sleep(time_t until)
106 {
107     lwpSleepUntil(until);
108 }
109
110 int
111 empth_wait_for_shutdown(void)
112 {
113     sigset_t set;
114     int sig, err;
115     time_t now;
116
117     sigemptyset(&set);
118     sigaddset(&set, SIGINT);
119     sigaddset(&set, SIGTERM);
120     for (;;) {
121         err = lwpSigWait(&set, &sig);
122         if (CANT_HAPPEN(err)) {
123             time(&now);
124             lwpSleepUntil(now + 60);
125             continue;
126         }
127         return sig;
128     }
129 }
130
131 empth_sem_t *
132 empth_sem_create(char *name, int cnt)
133 {
134     return lwpCreateSem(name, cnt);
135 }
136
137 void
138 empth_sem_signal(empth_sem_t *sm)
139 {
140     lwpSignal(sm);
141 }
142
143 void
144 empth_sem_wait(empth_sem_t *sm)
145 {
146     lwpWait(sm);
147 }