2000-12-13
2000-12-13 04:24:54 by Per Hedbor <ph@opera.com>
-
f6039640f5ec4eea2441d8315cf7b5454698ac5f
(9 lines)
(+5/-4)
[
Show
| Annotate
]
Branch: 5.2
Moved the trace(1) when __RUN_TRACE is defined to the end of main
Rev: server/base_server/roxen.pike:1.589
4:
// Per Hedbor, Henrik Grubbstrm, Pontus Hagland, David Hedbor and others.
// ABS and suicide systems contributed freely by Francesco Chemolli
- constant cvs_version="$Id: roxen.pike,v 1.588 2000/12/13 02:49:21 per Exp $";
+ constant cvs_version="$Id: roxen.pike,v 1.589 2000/12/13 04:24:54 per Exp $";
// Used when running threaded to find out which thread is the backend thread,
// for debug purposes only.
3168:
foreach( ({ "SIGQUIT", "SIGUSR1", "SIGUSR2", "SIGTRAP" }), string sig)
catch( signal(signum(sig),async_sig_start(describe_all_threads,-1)));
- #ifdef __RUN_TRACE
- trace(1);
- #endif
+
start_time=time(); // Used by the "uptime" info later on.
3179: Inside #if undefined(__NT__)
#ifndef __NT__
restart_if_stuck( 0 );
#endif
+ #ifdef __RUN_TRACE
+ trace(1);
+ #endif
return -1;
}