]> git.pond.sub.org Git - empserver/blob - include/lwp.h
WIP empdump, %a
[empserver] / include / lwp.h
1 /*
2  * lwp.h -- prototypes and structures for lightweight processes
3  * Copyright (C) 1991-3 Stephen Crane.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  * 
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  * 
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the Free
17  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  *
19  * author: Stephen Crane, (jsc@doc.ic.ac.uk), Department of Computing,
20  * Imperial College of Science, Technology and Medicine, 180 Queen's
21  * Gate, London SW7 2BZ, England.
22  */
23
24 #ifndef LWP_H
25 #define LWP_H
26
27 #include <signal.h>
28 #include <sys/types.h>
29
30 #define LWP_STACKCHECK  0x1
31 #define LWP_PRINT       0x2
32
33 struct lwpProc;
34 struct lwp_rwlock;
35
36 #define LWP_FD_READ     0x1
37 #define LWP_FD_WRITE    0x2
38
39 #define LWP_MAX_PRIO    8
40
41 struct lwpProc *lwpInitSystem(int prio, void **ctxp, int flags, sigset_t *);
42 struct lwpProc *lwpCreate(int prio, void (*)(void *), int size,
43                           int flags, char *name,
44                           int argc, char **argv, void *ud);
45 void lwpExit(void);
46 void lwpTerminate(struct lwpProc * p);
47 void lwpYield(void);
48 void lwpSleepFd(int fd, int flags);
49 int lwpSleepUntil(time_t until);
50 void lwpWakeup(struct lwpProc *);
51 int lwpSigWait(sigset_t *set, int *sig);
52 void *lwpGetUD(struct lwpProc * p);
53 void lwpSetUD(struct lwpProc * p, char *ud);
54 int lwpSetPriority(int prio);
55
56 struct lwp_rwlock *lwp_rwlock_create(char *);
57 void lwp_rwlock_destroy(struct lwp_rwlock *);
58 void lwp_rwlock_wrlock(struct lwp_rwlock *);
59 void lwp_rwlock_rdlock(struct lwp_rwlock *);
60 void lwp_rwlock_unlock(struct lwp_rwlock *);
61
62 extern struct lwpProc *LwpCurrent;
63
64 #endif