Roxen.git/
server/
base_server/
roxen.pike
Branch:
Tag:
Non-build tags
All tags
No tags
2000-03-28
2000-03-28 16:02:27 by Per Hedbor <ph@opera.com>
d77f9aab2e3f603a0d665491876d536338d847f3 (
8
lines) (+
5
/-
3
)
[
Show
|
Annotate
]
Branch:
5.2
Fixed the 'no abort on failed argcache initialtion' bug
Rev: server/base_server/roxen.pike:1.469
4:
// Per Hedbor, Henrik Grubbström, Pontus Hagland, David Hedbor and others. // ABS and suicide systems contributed freely by Francesco Chemolli
-
constant cvs_version="$Id: roxen.pike,v 1.
468
2000/03/
27
04
:
14
:
23
per Exp $";
+
constant cvs_version="$Id: roxen.pike,v 1.
469
2000/03/
28
16
:
02
:
27
per Exp $";
object backend_thread; ArgCache argcache;
3132:
e = catch( argcache = ArgCache(na,cp,id) ); if( e ) {
-
report_
error
( "Failed to initialize the global argument cache:\n"
+
report_
fatal
( "Failed to initialize the global argument cache:\n"
+ (describe_backtrace( e )/"\n")[0]+"\n");
-
report_debug
(
describe_backtrace(
e
)
);
+
sleep
(
10);
+
exit(1
);
} add_constant( "roxen.argcache", argcache ); report_debug("Done [%.2fms]\n", (gethrtime()-t)/1000.0);