[Zope-dev] What does error code 136 mean?
Dieter Maurer
dieter@handshake.de
Tue, 3 Sep 2002 21:59:42 +0200
Peter Keller writes:
> ...
> with stupid log enabled I
> get this message:
>
> 2002-09-02T09:57:30 ERROR(200) zdaemon zdaemon: Mon Sep 2 10:57:30 2002:
> Aiieee! 322190 exited with error code: 136
This is signal 8 (136 - 128).
On my Linux, this is SIGFPE (Floating Point Exception).
Check what it is for yours.
I think, Python has a way to control the generation of floating
point exceptions. At least, one should be able
to disable "Floating Point Underflow" signals.
Dieter