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