ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libcoro/coro.h
(Generate patch)

Comparing libcoro/coro.h (file contents):
Revision 1.24 by root, Sun Mar 2 16:10:22 2008 UTC vs.
Revision 1.29 by root, Mon Nov 3 16:05:38 2008 UTC

51 * Use _setjmp instead of setjmp on _XOPEN_SOURCE >= 600. 51 * Use _setjmp instead of setjmp on _XOPEN_SOURCE >= 600.
52 * 2007-05-02 Add assembly versions for x86 and amd64 (to avoid reliance 52 * 2007-05-02 Add assembly versions for x86 and amd64 (to avoid reliance
53 * on SIGUSR2 and sigaltstack in Crossfire). 53 * on SIGUSR2 and sigaltstack in Crossfire).
54 * 2008-01-21 Disable CFI usage on anything but GNU/Linux. 54 * 2008-01-21 Disable CFI usage on anything but GNU/Linux.
55 * 2008-03-02 Switched to 2-clause BSD license with GPL exception. 55 * 2008-03-02 Switched to 2-clause BSD license with GPL exception.
56 * 2008-04-04 New (but highly unrecommended) pthreads backend.
57 * 2008-04-24 Reinstate CORO_LOSER (had wrong stack adjustments).
58 * 2008-10-30 Support assembly method on x86 with and without frame pointer.
59 * 2008-11-03 Use a global asm statement for CORO_ASM, idea by pippijn.
56 */ 60 */
57 61
58#ifndef CORO_H 62#ifndef CORO_H
59#define CORO_H 63#define CORO_H
60 64
103 * 107 *
104 * -DCORO_ASM 108 * -DCORO_ASM
105 * 109 *
106 * Handcoded assembly, known to work only on a few architectures/ABI: 110 * Handcoded assembly, known to work only on a few architectures/ABI:
107 * ELF Linux x86 && amd64 when gcc is used and optimisation is turned on. 111 * ELF Linux x86 && amd64 when gcc is used and optimisation is turned on.
112 *
113 * -DCORO_PTHREAD
114 *
115 * Use the pthread API. You have to provide <pthread.h> and -lpthread.
108 * 116 *
109 * If you define neither of these symbols, coro.h will try to autodetect 117 * If you define neither of these symbols, coro.h will try to autodetect
110 * the model. This currently works for CORO_LOSER only. For the other 118 * the model. This currently works for CORO_LOSER only. For the other
111 * alternatives you should check (e.g. using autoconf) and define the 119 * alternatives you should check (e.g. using autoconf) and define the
112 * following symbols: HAVE_UCONTEXT_H / HAVE_SETJMP_H / HAVE_SIGALTSTACK. 120 * following symbols: HAVE_UCONTEXT_H / HAVE_SETJMP_H / HAVE_SIGALTSTACK.
151 159
152/*****************************************************************************/ 160/*****************************************************************************/
153 161
154#if !defined(CORO_LOSER) && !defined(CORO_UCONTEXT) \ 162#if !defined(CORO_LOSER) && !defined(CORO_UCONTEXT) \
155 && !defined(CORO_SJLJ) && !defined(CORO_LINUX) \ 163 && !defined(CORO_SJLJ) && !defined(CORO_LINUX) \
156 && !defined(CORO_IRIX) && !defined(CORO_ASM) 164 && !defined(CORO_IRIX) && !defined(CORO_ASM) \
165 && !defined(CORO_PTHREAD)
157# if defined(WINDOWS) 166# if defined(WINDOWS)
158# define CORO_LOSER 1 /* you don't win with windoze */ 167# define CORO_LOSER 1 /* you don't win with windoze */
159# elif defined(__linux) && (defined(__x86) || defined (__amd64)) 168# elif defined(__linux) && (defined(__x86) || defined (__amd64))
160# define CORO_ASM 1 169# define CORO_ASM 1
161# elif defined(HAVE_UCONTEXT_H) 170# elif defined(HAVE_UCONTEXT_H)
198# endif 207# endif
199 208
200#elif CORO_ASM 209#elif CORO_ASM
201 210
202struct coro_context { 211struct coro_context {
203 volatile void **sp; 212 volatile void **sp; /* must be at offset 0 */
204}; 213};
205 214
206void __attribute__ ((__noinline__, __fastcall__)) 215void __attribute__ ((__noinline__, __regparm__(2)))
207 coro_transfer(coro_context *prev, coro_context *next); 216coro_transfer (coro_context *prev, coro_context *next);
217
218#elif CORO_PTHREAD
219
220#include <pthread.h>
221
222extern pthread_mutex_t coro_mutex;
223
224struct coro_context {
225 pthread_cond_t c;
226};
227
228void coro_transfer (coro_context *prev, coro_context *next);
208 229
209#endif 230#endif
210 231
211#endif 232#endif
212 233

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines