pike.git/
src/
threads.c
Branch:
Tag:
Non-build tags
All tags
No tags
2008-08-05
2008-08-05 21:36:34 by Martin Stjernholm <mast@lysator.liu.se>
0a2bf64ef123d59d3f0a32c4b593c3320f2b819d (
10
lines) (+
7
/-
3
)
[
Show
|
Annotate
]
Branch:
7.9
Tuned down the exit noise from the thread cleanup-on-exit.
Rev: src/threads.c:1.263
2:
|| This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: threads.c,v 1.
262
2008/08/05 21:
23
:
46
mast Exp $
+
|| $Id: threads.c,v 1.
263
2008/08/05 21:
36
:
34
mast Exp $
*/ #include "global.h"
2466:
THREADS_DISALLOW(); }
+
#if 0
if (num_kills) {
-
fprintf (stderr, "Killed %d thread(s)", num_kills - num_pending_interrupts);
+
fprintf (stderr, "Killed %d thread(s)
in exit cleanup
",
+
num_kills - num_pending_interrupts);
if (num_pending_interrupts)
-
fprintf (stderr, ", %d haven't responded", num_pending_interrupts);
+
fprintf (stderr, ", %d
more
haven't responded", num_pending_interrupts);
fputs (".\n", stderr); }
-
+
#endif
} #endif