]> git.pond.sub.org Git - empserver/blob - include/lwp.h
Break inclusion cycle: prototypes.h and commands.h included each
[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
29 #define LWP_STACKCHECK  0x1
30 #define LWP_PRINT       0x2
31
32 struct lwpProc;
33 struct lwpSem;
34
35 #define LWP_FD_READ     0x1
36 #define LWP_FD_WRITE    0x2
37
38 #define LWP_MAX_PRIO    8
39
40 struct lwpProc *lwpInitSystem(int prio, void **ctxp, int flags, sigset_t *);
41 struct lwpProc *lwpCreate(int prio, void (*)(void *), int size,
42                           int flags, char *name, char *desc,
43                           int argc, char **argv, void *ud);
44 void lwpExit(void);
45 void lwpTerminate(struct lwpProc * p);
46 void lwpYield(void);
47 void lwpSleepFd(int fd, int flags);
48 void lwpSleepUntil(long until);
49 void lwpWakeupFd(struct lwpProc * p);
50 int lwpSigWait(sigset_t *set, int *sig);
51 void *lwpGetUD(struct lwpProc * p);
52 void lwpSetUD(struct lwpProc * p, char *ud);
53 void lwpSetDesc(struct lwpProc * p, char *name, char *desc);
54 int lwpSetPriority(int prio);
55
56 struct lwpSem *lwpCreateSem(char *name, int count);
57 void lwpSignal(struct lwpSem *);
58 void lwpWait(struct lwpSem *);
59
60 extern struct lwpProc *LwpCurrent;
61
62 #endif