]> git.pond.sub.org Git - empserver/blob - include/lwp.h
Include <sys/time.h> in lwp.h
[empserver] / include / lwp.h
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1994-2013, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *  Copyright (C) 1991-3 Stephen Crane
6  *
7  *  Empire is free software: you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation, either version 3 of the License, or
10  *  (at your option) any later version.
11  *
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
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.h -- prototypes and structures for lightweight processes
29  *
30  *  Known contributors to this file:
31  *     Markus Armbruster, 2004-2010
32  *     Ron Koenderink, 2007-2009
33  */
34
35 /*
36  * author: Stephen Crane, (jsc@doc.ic.ac.uk), Department of Computing,
37  * Imperial College of Science, Technology and Medicine, 180 Queen's
38  * Gate, London SW7 2BZ, England.
39  */
40
41 #ifndef LWP_H
42 #define LWP_H
43
44 #include <signal.h>
45 #include <sys/time.h>
46 #include <sys/types.h>
47
48 #define LWP_STACKCHECK  0x1
49 #define LWP_PRINT       0x2
50
51 struct lwpProc;
52 struct lwp_rwlock;
53
54 #define LWP_FD_READ     0x1
55 #define LWP_FD_WRITE    0x2
56
57 #define LWP_MAX_PRIO    8
58
59 struct lwpProc *lwpInitSystem(int prio, void **ctxp, int flags, sigset_t *);
60 struct lwpProc *lwpCreate(int prio, void (*)(void *), int size,
61                           int flags, char *name,
62                           int argc, char **argv, void *ud);
63 void lwpExit(void);
64 void lwpTerminate(struct lwpProc *);
65 void lwpYield(void);
66 int lwpSleepFd(int fd, int flags, struct timeval *timeout);
67 int lwpSleepUntil(time_t until);
68 void lwpWakeup(struct lwpProc *);
69 int lwpSigWait(sigset_t *set, int *sig);
70 void *lwpGetUD(struct lwpProc *);
71 void lwpSetUD(struct lwpProc *, char *ud);
72 int lwpSetPriority(int prio);
73 char *lwpName(struct lwpProc *);
74 void lwpSetName(struct lwpProc *, char *name);
75
76 struct lwp_rwlock *lwp_rwlock_create(char *);
77 void lwp_rwlock_destroy(struct lwp_rwlock *);
78 void lwp_rwlock_wrlock(struct lwp_rwlock *);
79 void lwp_rwlock_rdlock(struct lwp_rwlock *);
80 void lwp_rwlock_unlock(struct lwp_rwlock *);
81
82 extern struct lwpProc *LwpCurrent;
83
84 #endif