From: Gurusamy Sarathy Date: Tue, 3 Feb 1998 03:45:09 +0000 (+0000) Subject: [win32] integrate mainline X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=43a861f1c4418d63c6d99fbecb816d11ccf25793;p=p5sagit%2Fp5-mst-13.2.git [win32] integrate mainline p4raw-id: //depot/win32/perl@455 --- 43a861f1c4418d63c6d99fbecb816d11ccf25793 diff --cc MANIFEST index e1a7c55,2e53129..a9094bb --- a/MANIFEST +++ b/MANIFEST @@@ -737,10 -743,11 +743,13 @@@ t/lib/soundex.t See if Soundex work t/lib/symbol.t See if Symbol works t/lib/texttabs.t See if Text::Tabs works t/lib/textwrap.t See if Text::Wrap works -t/lib/timelocal.t See if Time::Local works +t/lib/tie-push.t Test for Tie::Array +t/lib/tie-stdarray.t Test for Tie::StdArray +t/lib/tie-stdpush.t Test for Tie::StdArray t/lib/thread.t Basic test of threading (skipped if no threads) + t/lib/tie-push.t See if pushing onto tied arrays works + t/lib/tie-stdarray.t See if tied arrays work + t/lib/tie-stdpush.t See if pushing onto standard tied arrays works t/lib/trig.t See if Math::Trig works t/op/append.t See if . works t/op/arith.t See if arithmetic works diff --cc sv.c index cd756a0,2ed06cd..5b37d72 --- a/sv.c +++ b/sv.c @@@ -73,10 -73,10 +73,10 @@@ typedef void (*SVFUNC) _((SV*)) #define del_SV(p) \ do { \ - MUTEX_LOCK(&sv_mutex); \ + LOCK_SV_MUTEX; \ reg_remove(p); \ - free((char*)(p)); \ + Safefree((char*)(p)); \ - MUTEX_UNLOCK(&sv_mutex); \ + UNLOCK_SV_MUTEX; \ } while (0) static SV **registry;