=== modified file 'pth_lib.c' --- pth_lib.c 2006-06-25 08:02:00 +0000 +++ pth_lib.c 2010-08-26 16:57:57 +0000 @@ -92,7 +92,9 @@ pth_attr_set(t_attr, PTH_ATTR_CANCEL_STATE, PTH_CANCEL_DISABLE); pth_attr_set(t_attr, PTH_ATTR_STACK_SIZE, 64*1024); pth_attr_set(t_attr, PTH_ATTR_STACK_ADDR, NULL); +fprintf(stderr, __FILE__ ": before pth_spawn\n"); pth_sched = pth_spawn(t_attr, pth_scheduler, NULL); +fprintf(stderr, __FILE__ ": after pth_spawn\n"); if (pth_sched == NULL) { pth_shield { pth_attr_destroy(t_attr);