diff options
author | Ilya Zakharevich <ilya@math.berkeley.edu> | 1998-07-20 17:40:00 -0400 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-08-02 06:16:03 +0000 |
commit | 8b73bbec3102cdf25a35c954eb1aab85acc07808 (patch) | |
tree | 52e125d1fa92882b072415b5ac465a817f731bc7 /README.threads | |
parent | bd869e3a5834bd5d26dd079fef07f5c567f6ca97 (diff) | |
download | perl-8b73bbec3102cdf25a35c954eb1aab85acc07808.tar.gz |
tweaked version of suggested patch
Message-Id: <199807210140.VAA17186@monk.mps.ohio-state.edu>
Subject: [PATCH 5.004_75] Enable -DS
p4raw-id: //depot/maint-5.005/perl@1701
Diffstat (limited to 'README.threads')
-rw-r--r-- | README.threads | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/README.threads b/README.threads index e9f69663f9..83570561a7 100644 --- a/README.threads +++ b/README.threads @@ -150,13 +150,13 @@ haven't tracked down yet) and there are very probably others too. Debugging -Use the -DL command-line option to turn on debugging of the +Use the -DS command-line option to turn on debugging of the multi-threading code. Under Linux, that also turns on a quick hack I did to grab a bit of extra information from segfaults. If you have a fancier gdb/threads setup than I do then you'll have to delete the lines in perl.c which say #if defined(DEBUGGING) && defined(USE_THREADS) && defined(__linux__) - DEBUG_L(signal(SIGSEGV, (void(*)(int))catch_sigsegv);); + DEBUG_S(signal(SIGSEGV, (void(*)(int))catch_sigsegv);); #endif |