Re: threading issue in 1.8.3

2008-01-30 Thread Antoine Mathys
> My proposed patch for this is attached. > Thanks, works great. _ Ne gardez plus qu'une seule adresse mail ! Copiez vos mails vers Yahoo! Mail http://mail.yahoo.fr

Re: threading issue in 1.8.3

2008-01-30 Thread Antoine Mathys
> scm_join_thread ? > Yes. I missed it because it is not in the manual. _ Ne gardez plus qu'une seule adresse mail ! Copiez vos mails vers Yahoo! Mail http://mail.yahoo.fr

threading issue in 1.8.3

2008-01-11 Thread Antoine Mathys
Hello, I am having a problem with threads in 1.8.3 . The offending program: -- #include #include void * thread_inner_main (void * unused) { int argc = 0; char* argv[] = { 0 }; scm_shell (argc, argv); return NULL; /* dummy */ } void * thread_main (void * unused) { s