Roxen.git/
server/
base_server/
module.pike
Branch:
Tag:
Non-build tags
All tags
No tags
1999-06-09
1999-06-09 01:49:22 by Martin Stjernholm <mast@lysator.liu.se>
0fce592d43dce0497b14fa30899f0ccdf773f507 (
7
lines) (+
5
/-
2
)
[
Show
|
Annotate
]
Branch:
5.2
Catch any error from _do_call_outs().
Rev: server/base_server/module.pike:1.42
1:
-
/* $Id: module.pike,v 1.
41
1999/
05
/
24
08
:
41
:
59
per
Exp $ */
+
/* $Id: module.pike,v 1.
42
1999/
06
/
09
01
:
49
:
22
mast
Exp $ */
#include <module.h>
30:
if(roxen->root) roxen->configuration_interface()->build_root(roxen->root); }
-
_do_call_outs();
+
mixed err;
+
if (err = catch (
_do_call_outs()
))
+
report_error ("Error doing call outs:\n" + describe_backtrace (err))
;
return 1; }