places exit handler

svn: r17817
This commit is contained in:
Kevin Tew 2010-01-25 16:11:22 +00:00
parent 5f69c8ed4e
commit 5f8c18a7ef
3 changed files with 50 additions and 18 deletions

View File

@ -253,6 +253,18 @@ int mz_proc_thread_detach(mz_proc_thread *thread) {
#endif #endif
} }
void mz_proc_thread_exit(void *rc) {
#ifdef WIN32
ExitThread((DWORD)rc);
#else
# ifndef MZ_PRECISE_GC
pthread_exit(rc);
# else
pthread_exit(rc);
# endif
#endif
}
/***********************************************************************/ /***********************************************************************/
/* RW Lock */ /* RW Lock */
/***********************************************************************/ /***********************************************************************/

View File

@ -46,6 +46,7 @@ mz_proc_thread* mzrt_proc_first_thread_init();
mz_proc_thread* mz_proc_thread_create(mz_proc_thread_start*, void* data); mz_proc_thread* mz_proc_thread_create(mz_proc_thread_start*, void* data);
void *mz_proc_thread_wait(mz_proc_thread *thread); void *mz_proc_thread_wait(mz_proc_thread *thread);
int mz_proc_thread_detach(mz_proc_thread *thread); int mz_proc_thread_detach(mz_proc_thread *thread);
void mz_proc_thread_exit(void *rc);
void mzrt_sleep(int seconds); void mzrt_sleep(int seconds);

View File

@ -7,6 +7,7 @@
#include "mzrt.h" #include "mzrt.h"
READ_ONLY static Scheme_Object *scheme_def_place_exit_proc;
SHARED_OK mz_proc_thread *scheme_master_proc_thread; SHARED_OK mz_proc_thread *scheme_master_proc_thread;
THREAD_LOCAL_DECL(mz_proc_thread *proc_thread_self); THREAD_LOCAL_DECL(mz_proc_thread *proc_thread_self);
@ -17,6 +18,7 @@ static Scheme_Object *scheme_place_p(int argc, Scheme_Object *args[]);
static Scheme_Object *scheme_places_deep_copy_in_master(Scheme_Object *so); static Scheme_Object *scheme_places_deep_copy_in_master(Scheme_Object *so);
static Scheme_Object *scheme_place_send(int argc, Scheme_Object *args[]); static Scheme_Object *scheme_place_send(int argc, Scheme_Object *args[]);
static Scheme_Object *scheme_place_recv(int argc, Scheme_Object *args[]); static Scheme_Object *scheme_place_recv(int argc, Scheme_Object *args[]);
static Scheme_Object *def_place_exit_handler_proc(int argc, Scheme_Object *args[]);
Scheme_Object *scheme_place_async_channel_create(); Scheme_Object *scheme_place_async_channel_create();
void scheme_place_async_send(Scheme_Place_Async_Channel *ch, Scheme_Object *o); void scheme_place_async_send(Scheme_Place_Async_Channel *ch, Scheme_Object *o);
@ -42,7 +44,6 @@ static Scheme_Object *not_implemented(int argc, Scheme_Object **argv)
# ifdef MZ_PRECISE_GC # ifdef MZ_PRECISE_GC
static void register_traversers(void) { } static void register_traversers(void) { }
# endif # endif
#endif #endif
@ -67,7 +68,12 @@ void scheme_init_place(Scheme_Env *env)
PLACE_PRIM_W_ARITY("place-ch-send", scheme_place_send, 1, 2, plenv); PLACE_PRIM_W_ARITY("place-ch-send", scheme_place_send, 1, 2, plenv);
PLACE_PRIM_W_ARITY("place-ch-recv", scheme_place_recv, 1, 1, plenv); PLACE_PRIM_W_ARITY("place-ch-recv", scheme_place_recv, 1, 1, plenv);
#ifdef MZ_USE_PLACES
REGISTER_SO(scheme_def_place_exit_proc);
scheme_def_place_exit_proc = scheme_make_prim_w_arity(def_place_exit_handler_proc, "default-place-exit-handler", 1, 1);
#endif
scheme_finish_primitive_module(plenv); scheme_finish_primitive_module(plenv);
} }
#ifdef MZ_USE_PLACES #ifdef MZ_USE_PLACES
@ -86,6 +92,21 @@ typedef struct Place_Start_Data {
mzrt_sema *ready; mzrt_sema *ready;
} Place_Start_Data; } Place_Start_Data;
static Scheme_Object *def_place_exit_handler_proc(int argc, Scheme_Object *argv[])
{
long status;
if (SCHEME_INTP(argv[0])) {
status = SCHEME_INT_VAL(argv[0]);
if (status < 1 || status > 255)
status = 0;
} else
status = 0;
mz_proc_thread_exit((void *) status);
return scheme_void; /* Never get here */
}
static void null_out_runtime_globals() { static void null_out_runtime_globals() {
scheme_current_thread = NULL; scheme_current_thread = NULL;
scheme_first_thread = NULL; scheme_first_thread = NULL;
@ -155,7 +176,7 @@ Scheme_Object *scheme_place(int argc, Scheme_Object *args[]) {
return (Scheme_Object*) place; return (Scheme_Object*) place;
} }
#ifdef MZ_PRECISE_GC # ifdef MZ_PRECISE_GC
/*============= SIGNAL HANDLER =============*/ /*============= SIGNAL HANDLER =============*/
#include <signal.h> #include <signal.h>
#include <sys/types.h> #include <sys/types.h>
@ -324,13 +345,13 @@ static int place_wait_ready(Scheme_Object *o) {
} }
return 0; return 0;
} }
#endif # endif
static Scheme_Object *scheme_place_wait(int argc, Scheme_Object *args[]) { static Scheme_Object *scheme_place_wait(int argc, Scheme_Object *args[]) {
Scheme_Place *place; Scheme_Place *place;
place = (Scheme_Place *) args[0]; place = (Scheme_Place *) args[0];
#ifdef MZ_PRECISE_GC # ifdef MZ_PRECISE_GC
{ {
Scheme_Object *rc; Scheme_Object *rc;
mz_proc_thread *worker_thread; mz_proc_thread *worker_thread;
@ -353,13 +374,13 @@ static Scheme_Object *scheme_place_wait(int argc, Scheme_Object *args[]) {
free(wd); free(wd);
return rc; return rc;
} }
#else # else
{ {
void *rcvoid; void *rcvoid;
rcvoid = mz_proc_thread_wait((mz_proc_thread *)place->proc_thread); rcvoid = mz_proc_thread_wait((mz_proc_thread *)place->proc_thread);
return scheme_make_integer((long) rcvoid); return scheme_make_integer((long) rcvoid);
} }
#endif # endif
} }
static Scheme_Object *scheme_place_p(int argc, Scheme_Object *args[]) static Scheme_Object *scheme_place_p(int argc, Scheme_Object *args[])
@ -447,6 +468,8 @@ static void *place_start_proc(void *data_arg) {
/* at point point, don't refer to place_data or its content /* at point point, don't refer to place_data or its content
anymore, because it's allocated in the other place */ anymore, because it's allocated in the other place */
scheme_set_root_param(MZCONFIG_EXIT_HANDLER, scheme_def_place_exit_proc);
{ {
Scheme_Thread * volatile p; Scheme_Thread * volatile p;
mz_jmp_buf * volatile saved_error_buf; mz_jmp_buf * volatile saved_error_buf;
@ -473,11 +496,11 @@ static void *place_start_proc(void *data_arg) {
} }
Scheme_Object *scheme_places_deep_copy_in_master(Scheme_Object *so) { Scheme_Object *scheme_places_deep_copy_in_master(Scheme_Object *so) {
#if defined(MZ_USE_PLACES) && defined(MZ_PRECISE_GC) # if defined(MZ_USE_PLACES) && defined(MZ_PRECISE_GC)
void *return_payload; void *return_payload;
return_payload = scheme_master_fast_path(5, so); return_payload = scheme_master_fast_path(5, so);
return (Scheme_Object*) return_payload; return (Scheme_Object*) return_payload;
#endif # endif
return so; return so;
} }
@ -503,9 +526,7 @@ Scheme_Object *scheme_place_recv(int argc, Scheme_Object *args[]) {
return scheme_true; return scheme_true;
} }
#ifdef MZ_PRECISE_GC # ifdef MZ_PRECISE_GC
static void* scheme_master_place_handlemsg(int msg_type, void *msg_payload);
static void* scheme_master_place_handlemsg(int msg_type, void *msg_payload) static void* scheme_master_place_handlemsg(int msg_type, void *msg_payload)
{ {
switch(msg_type) { switch(msg_type) {
@ -542,13 +563,13 @@ void* scheme_master_fast_path(int msg_type, void *msg_payload) {
Scheme_Object *o; Scheme_Object *o;
void *original_gc; void *original_gc;
#ifdef MZ_PRECISE_GC # ifdef MZ_PRECISE_GC
original_gc = GC_switch_to_master_gc(); original_gc = GC_switch_to_master_gc();
#endif # endif
o = scheme_master_place_handlemsg(msg_type, msg_payload); o = scheme_master_place_handlemsg(msg_type, msg_payload);
#ifdef MZ_PRECISE_GC # ifdef MZ_PRECISE_GC
GC_switch_back_from_master(original_gc); GC_switch_back_from_master(original_gc);
#endif # endif
return o; return o;
} }
@ -562,8 +583,7 @@ void scheme_spawn_master_place() {
scheme_master_proc_thread = (void*) ~0; scheme_master_proc_thread = (void*) ~0;
} }
# endif
#endif
/*========================================================================*/ /*========================================================================*/
/* places async channels */ /* places async channels */
@ -657,7 +677,6 @@ Scheme_Object *scheme_place_async_recv(Scheme_Place_Async_Channel *ch) {
return msg; return msg;
} }
/*========================================================================*/ /*========================================================================*/
/* precise GC traversers */ /* precise GC traversers */
/*========================================================================*/ /*========================================================================*/