diff --git a/src/program.c b/src/program.c index cbb34db8e6ecf6cb5e9a42809a7f962f1425b152..848fa9222b357ddafea78b30de42c48098d3792b 100644 --- a/src/program.c +++ b/src/program.c @@ -4,7 +4,7 @@ ||| See the files COPYING and DISCLAIMER for more information. \*/ #include "global.h" -RCSID("$Id: program.c,v 1.80 1998/04/14 22:10:50 hubbe Exp $"); +RCSID("$Id: program.c,v 1.81 1998/04/15 02:11:24 grubba Exp $"); #include "program.h" #include "object.h" #include "dynamic_buffer.h" @@ -392,23 +392,6 @@ void fixate_program(void) new_program->flags |= PROGRAM_FIXED; } -/* - * Error handler. - * - * This function should not normally be called, - * but is here for safety reasons. - */ -void restore_threads_disabled(void *arg) -{ - fprintf(stderr, "restore_threads_disabled(): threads_disabled:%d, saved_threads_disabled:%d compilation_depth:%d\n", threads_disabled, (int)arg, compilation_depth); -#ifdef DEBUG - fatal("restore_threads_disabled() called\n"); -#endif /* DEBUG */ - - threads_disabled = (int)arg; - co_signal(&threads_disabled_change); -} - /* * Start building a new program */ @@ -2068,7 +2051,7 @@ struct program *compile(struct pike_string *prog) } #ifdef DEBUG - if (threads_disabled != saved_threads_disabled+1) { + if (threads_disabled < saved_threads_disabled) { fatal("compile(): threads_disabled:%d saved_threads_disabled:%d\n", threads_disabled, saved_threads_disabled); }