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.31 by root, Fri Nov 7 16:39:35 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.
60 * 2008-11-05 Hopefully fix misaligned stacks with CORO_ASM/SETJMP.
61 * 2008-11-07 rbp wasn't saved in CORO_ASM on x86_64.
56 */ 62 */
57 63
58#ifndef CORO_H 64#ifndef CORO_H
59#define CORO_H 65#define CORO_H
60 66
103 * 109 *
104 * -DCORO_ASM 110 * -DCORO_ASM
105 * 111 *
106 * Handcoded assembly, known to work only on a few architectures/ABI: 112 * 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. 113 * ELF Linux x86 && amd64 when gcc is used and optimisation is turned on.
114 *
115 * -DCORO_PTHREAD
116 *
117 * Use the pthread API. You have to provide <pthread.h> and -lpthread.
108 * 118 *
109 * If you define neither of these symbols, coro.h will try to autodetect 119 * 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 120 * the model. This currently works for CORO_LOSER only. For the other
111 * alternatives you should check (e.g. using autoconf) and define the 121 * alternatives you should check (e.g. using autoconf) and define the
112 * following symbols: HAVE_UCONTEXT_H / HAVE_SETJMP_H / HAVE_SIGALTSTACK. 122 * following symbols: HAVE_UCONTEXT_H / HAVE_SETJMP_H / HAVE_SIGALTSTACK.
151 161
152/*****************************************************************************/ 162/*****************************************************************************/
153 163
154#if !defined(CORO_LOSER) && !defined(CORO_UCONTEXT) \ 164#if !defined(CORO_LOSER) && !defined(CORO_UCONTEXT) \
155 && !defined(CORO_SJLJ) && !defined(CORO_LINUX) \ 165 && !defined(CORO_SJLJ) && !defined(CORO_LINUX) \
156 && !defined(CORO_IRIX) && !defined(CORO_ASM) 166 && !defined(CORO_IRIX) && !defined(CORO_ASM) \
167 && !defined(CORO_PTHREAD)
157# if defined(WINDOWS) 168# if defined(WINDOWS)
158# define CORO_LOSER 1 /* you don't win with windoze */ 169# define CORO_LOSER 1 /* you don't win with windoze */
159# elif defined(__linux) && (defined(__x86) || defined (__amd64)) 170# elif defined(__linux) && (defined(__x86) || defined (__amd64))
160# define CORO_ASM 1 171# define CORO_ASM 1
161# elif defined(HAVE_UCONTEXT_H) 172# elif defined(HAVE_UCONTEXT_H)
198# endif 209# endif
199 210
200#elif CORO_ASM 211#elif CORO_ASM
201 212
202struct coro_context { 213struct coro_context {
203 volatile void **sp; 214 volatile void **sp; /* must be at offset 0 */
204}; 215};
205 216
206void __attribute__ ((__noinline__, __fastcall__)) 217void __attribute__ ((__noinline__, __regparm__(2)))
207 coro_transfer(coro_context *prev, coro_context *next); 218coro_transfer (coro_context *prev, coro_context *next);
219
220#elif CORO_PTHREAD
221
222#include <pthread.h>
223
224extern pthread_mutex_t coro_mutex;
225
226struct coro_context {
227 pthread_cond_t c;
228};
229
230void coro_transfer (coro_context *prev, coro_context *next);
208 231
209#endif 232#endif
210 233
211#endif 234#endif
212 235

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines