]> git.pond.sub.org Git - empserver/blob - include/lwp.h
(lwpProc, lwpSem): Declare as incomplete type in include/lwp.h. Move
[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 #ifndef _LWP_H_
24 #define _LWP_H_
25 #ifdef UCONTEXT
26 #include <ucontext.h>
27 #else  /* !UCONTEXT */
28 #include <setjmp.h>
29 #endif /* !UCONTEXT */
30 #include <sys/time.h>
31 #include "misc.h"
32 #define LWP_STACKCHECK  0x1
33 #define LWP_PRINT       0x2
34
35 struct lwpProc;
36 struct lwpSem;
37
38 #define LWP_FD_READ     0x1
39 #define LWP_FD_WRITE    0x2
40
41 #define LWP_MAX_PRIO    8
42
43 struct lwpProc *lwpInitSystem(int prio, char **ctxp, int flags);
44 struct lwpProc *lwpCreate(int prio, void (*)(void *), int size,
45                           int flags, char *name, char *desc,
46                           int argc, char **argv, void *ud);
47 void lwpExit(void);
48 void lwpTerminate(struct lwpProc * p);
49 void lwpYield(void);
50 void lwpSleepFd(int fd, int flags);
51 void lwpSleepUntil(long until);
52 void lwpWakeupFd(struct lwpProc * p);
53 void *lwpGetUD(struct lwpProc * p);
54 void lwpSetUD(struct lwpProc * p, char *ud);
55 void lwpSetDesc(struct lwpProc * p, char *name, char *desc);
56 int lwpSetPriority(int prio);
57
58 struct lwpSem *lwpCreateSem(char *name, int count);
59 void lwpSignal(struct lwpSem *);
60 void lwpWait(struct lwpSem *);
61 void lwpSelect(void *);
62 void lwpStatus(struct lwpProc *proc, char *format, ...)
63     ATTRIBUTE((format (printf, 2, 3)));
64
65 extern struct lwpProc *LwpCurrent;
66
67 #endif /* _LWP_H_ */