]> git.pond.sub.org Git - empserver/blob - src/lib/empthread/lwp.c
Indented with src/scripts/indent-emp.
[empserver] / src / lib / empthread / lwp.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, 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 the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  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 <stdio.h>
35 #include "prototypes.h"
36 #include "empthread.h"
37
38 #ifdef _EMPTH_LWP
39
40 int
41 empth_init(char **ctx, int flags)
42 {
43     lwpInitSystem(7, ctx, flags);
44     return 0;
45 }
46
47
48 empth_t *
49 empth_create(int prio, void (*entry) (), int size, int flags, char *name,
50              char *desc, void *ud)
51 {
52     /* inherit flags */
53     if (!flags)
54         flags = LwpCurrent->flags;
55     return lwpCreate(prio, entry, size, flags, name, desc, 0, 0, ud);
56 }
57
58 #if 0
59 /* This is unused now? */
60 void
61 empth_setctx(void *ctx)
62 {
63     /* lwp does it automatically */
64     return;
65 }
66 #endif
67
68 empth_t *
69 empth_self(void)
70 {
71     return LwpCurrent;
72 }
73
74 void
75 empth_exit(void)
76 {
77     time_t now;
78
79     /* We want to leave the main thread around forever, until it's time
80        for it to die for real (in a shutdown) */
81     if (!strcmp(LwpCurrent->name, "Main")) {
82         while (1) {
83             time(&now);
84             lwpSleepUntil(now + 60);
85         }
86     }
87     lwpExit();
88 }
89
90 void
91 empth_yield(void)
92 {
93     /* a hack! */
94     lwpReschedule();
95 }
96
97 void
98 empth_terminate(empth_t *a)
99 {
100     lwpTerminate(a);
101 }
102
103 void
104 empth_select(int fd, int flags)
105 {
106     lwpSleepFd(fd, flags);
107 }
108
109 void
110 empth_wakeup(empth_t *a)
111 {
112     lwpWakeupFd(a);
113 }
114
115 void
116 empth_sleep(long int until)
117 {
118     lwpSleepUntil(until);
119 }
120
121
122 empth_sem_t *
123 empth_sem_create(char *name, int cnt)
124 {
125     return lwpCreateSem(name, cnt);
126 }
127
128 void
129 empth_sem_signal(empth_sem_t *sm)
130 {
131     lwpSignal(sm);
132 }
133
134 void
135 empth_sem_wait(empth_sem_t *sm)
136 {
137     lwpWait(sm);
138 }
139
140 emp_sig_t
141 empth_alarm(int sig)
142 {
143     /* no way we can be here while using LWP threads */
144     panic(sig);
145 }
146 #endif