]> 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-2010, 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-2009
33  */
34
35 #include <config.h>
36
37 #include <signal.h>
38 #include <time.h>
39 #include "empthread.h"
40 #include "file.h"
41 #include "misc.h"
42
43 /* Flags that were passed to empth_init() */
44 static int empth_flags;
45
46
47 int
48 empth_init(void **ctx, int flags)
49 {
50     sigset_t set;
51
52     empth_flags = flags;
53     empth_init_signals();
54     sigemptyset(&set);
55     sigaddset(&set, SIGHUP);
56     sigaddset(&set, SIGINT);
57     sigaddset(&set, SIGTERM);
58     lwpInitSystem(1, ctx, flags, &set);
59     return 0;
60 }
61
62
63 empth_t *
64 empth_create(void (*entry)(void *), int size, int flags,
65              char *name, void *ud)
66 {
67     if (!flags)
68         flags = empth_flags;
69     ef_make_stale();
70     return lwpCreate(1, entry, size, flags, name, 0, NULL, ud);
71 }
72
73 empth_t *
74 empth_self(void)
75 {
76     return LwpCurrent;
77 }
78
79 char *
80 empth_name(empth_t *thread)
81 {
82     return lwpName(thread);
83 }
84
85 void
86 empth_set_name(empth_t *thread, char *name)
87 {
88     lwpSetName(thread, name);
89 }
90
91 void
92 empth_exit(void)
93 {
94     ef_make_stale();
95     lwpExit();
96 }
97
98 void
99 empth_yield(void)
100 {
101     ef_make_stale();
102     lwpYield();
103 }
104
105 int
106 empth_select(int fd, int flags, struct timeval *timeout)
107 {
108     ef_make_stale();
109     return lwpSleepFd(fd, flags, timeout);
110 }
111
112 void
113 empth_wakeup(empth_t *a)
114 {
115     lwpWakeup(a);
116 }
117
118 int
119 empth_sleep(time_t until)
120 {
121     ef_make_stale();
122     return lwpSleepUntil(until);
123 }
124
125 int
126 empth_wait_for_signal(void)
127 {
128     sigset_t set;
129     int sig, err;
130     time_t now;
131
132     ef_make_stale();
133     sigemptyset(&set);
134     sigaddset(&set, SIGHUP);
135     sigaddset(&set, SIGINT);
136     sigaddset(&set, SIGTERM);
137     for (;;) {
138         err = lwpSigWait(&set, &sig);
139         if (CANT_HAPPEN(err)) {
140             time(&now);
141             lwpSleepUntil(now + 60);
142             continue;
143         }
144         return sig;
145     }
146 }
147
148 empth_rwlock_t *
149 empth_rwlock_create(char *name)
150 {
151     return lwp_rwlock_create(name);
152 }
153
154 void
155 empth_rwlock_destroy(empth_rwlock_t *rwlock)
156 {
157     lwp_rwlock_destroy(rwlock);
158 }
159
160 void
161 empth_rwlock_wrlock(empth_rwlock_t *rwlock)
162 {
163     ef_make_stale();
164     lwp_rwlock_wrlock(rwlock);
165 }
166
167 void
168 empth_rwlock_rdlock(empth_rwlock_t *rwlock)
169 {
170     ef_make_stale();
171     lwp_rwlock_rdlock(rwlock);
172 }
173
174 void
175 empth_rwlock_unlock(empth_rwlock_t *rwlock)
176 {
177     lwp_rwlock_unlock(rwlock);
178 }