From e45f66889203cfbbbeac9ec69944889dc6ad6d1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net> Date: Fri, 20 Mar 1998 14:53:31 -0800 Subject: [PATCH] #ifdef DEBUG added at one point Rev: src/threads.c:1.61 --- src/threads.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/threads.c b/src/threads.c index 3f3983a0c9..9f8673727b 100644 --- a/src/threads.c +++ b/src/threads.c @@ -1,5 +1,5 @@ #include "global.h" -RCSID("$Id: threads.c,v 1.60 1998/03/18 20:22:32 per Exp $"); +RCSID("$Id: threads.c,v 1.61 1998/03/20 22:53:31 hubbe Exp $"); int num_threads = 1; int threads_disabled = 0; @@ -775,8 +775,10 @@ void th_init(void) set_exit_callback(exit_mutex_key_obj); mutex_key=end_program(); mutex_key->flags|=PROGRAM_DESTRUCT_IMMEDIATE; +#ifdef DEBUG if(!mutex_key) fatal("Failed to initialize mutex_key program!\n"); +#endif start_new_program(); add_storage(sizeof(COND_T)); -- GitLab