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

Comparing libcoro/coro.c (file contents):
Revision 1.29 by root, Sun Mar 2 16:10:22 2008 UTC vs.
Revision 1.30 by root, Fri Apr 4 20:07:35 2008 UTC

159 : "m" (next->sp) 159 : "m" (next->sp)
160 ); 160 );
161} 161}
162#endif 162#endif
163 163
164#if CORO_PTHREAD
165
166struct coro_init_args {
167 coro_func func;
168 void *arg;
169 coro_context *self, *main;
170};
171
172pthread_mutex_t coro_mutex = PTHREAD_MUTEX_INITIALIZER;
173
174static void *
175trampoline (void *args_)
176{
177 struct coro_init_args *args = (struct coro_init_args *)args_;
178 coro_func func = args->func;
179 void *arg = args->arg;
180
181 pthread_mutex_lock (&coro_mutex);
182 pthread_cond_destroy (&args->self->c);
183 coro_transfer (args->self, args->main);
184 func (arg);
185 pthread_mutex_unlock (&coro_mutex);
186
187 return 0;
188}
189
190void coro_transfer(coro_context *prev, coro_context *next)
191{
192 pthread_cond_init (&prev->c, 0);
193 pthread_cond_signal (&next->c);
194 pthread_cond_wait (&prev->c, &coro_mutex);
195 pthread_cond_destroy (&prev->c);
196}
197
198#endif
199
164/* initialize a machine state */ 200/* initialize a machine state */
165void coro_create (coro_context *ctx, 201void coro_create (coro_context *ctx,
166 coro_func coro, void *arg, 202 coro_func coro, void *arg,
167 void *sptr, long ssize) 203 void *sptr, long ssize)
168{ 204{
257 ((_JUMP_BUFFER *)&ctx->env)->Rsp = (__int64)STACK_ADJUST_PTR (sptr,ssize); 293 ((_JUMP_BUFFER *)&ctx->env)->Rsp = (__int64)STACK_ADJUST_PTR (sptr,ssize);
258#elif defined(_M_IA64) 294#elif defined(_M_IA64)
259 ((_JUMP_BUFFER *)&ctx->env)->StIIP = (__int64)coro_init; 295 ((_JUMP_BUFFER *)&ctx->env)->StIIP = (__int64)coro_init;
260 ((_JUMP_BUFFER *)&ctx->env)->IntSp = (__int64)STACK_ADJUST_PTR (sptr,ssize); 296 ((_JUMP_BUFFER *)&ctx->env)->IntSp = (__int64)STACK_ADJUST_PTR (sptr,ssize);
261#else 297#else
262#error "microsoft libc or architecture not supported" 298# error "microsoft libc or architecture not supported"
263#endif 299#endif
264 300
265# elif CORO_LINUX 301# elif CORO_LINUX
266 302
267 _setjmp (ctx->env); 303 _setjmp (ctx->env);
296 332
297# endif 333# endif
298 334
299 coro_transfer ((coro_context *)create_coro, (coro_context *)new_coro); 335 coro_transfer ((coro_context *)create_coro, (coro_context *)new_coro);
300 336
337# elif CORO_PTHREAD
338
339 pthread_t id;
340 pthread_attr_t attr;
341 coro_context nctx;
342 struct coro_init_args args;
343 static int once;
344
345 if (!once)
346 {
347 pthread_mutex_lock (&coro_mutex);
348 once = 1;
349 }
350
351 args.func = coro;
352 args.arg = arg;
353 args.self = ctx;
354 args.main = &nctx;
355
356 pthread_attr_init (&attr);
357 pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED);
358 pthread_attr_setstack (&attr, sptr, (size_t)ssize);
359 pthread_create (&id, &attr, trampoline, &args);
360
361 pthread_cond_init (&args.self->c, 0);
362 coro_transfer (args.main, args.self);
363
301#else 364#else
302# error unsupported architecture 365# error unsupported backend
303#endif 366#endif
304} 367}
305 368

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines