diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 1997-11-08 00:34:03 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 1997-11-08 00:34:03 +0000 |
commit | 5ddb6eab5b331747cc6c97d7afbea3b5a48d2c4d (patch) | |
tree | 29625cf925d5a3031adae73d8de1e429b9f164ef | |
parent | d59a3bff4895759de00a35ae929c24707c4ad061 (diff) | |
download | perl-5ddb6eab5b331747cc6c97d7afbea3b5a48d2c4d.tar.gz |
Add :base_thread to :default in Opcode.pm
This allows lib/safe.t to pass when threaded.
It is unclear if 'lock' should be safe as it allows
denial of service attack, but could not figure out
how to add just 'specific' (sic) to :default
without triggering 'already tagged' warning noise.
p4raw-id: //depot/ansiperl@212
-rw-r--r-- | ext/Opcode/Opcode.pm | 2 | ||||
-rw-r--r-- | win32/makefile.mk | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ext/Opcode/Opcode.pm b/ext/Opcode/Opcode.pm index d2db5ecba4..c7d7ce3f96 100644 --- a/ext/Opcode/Opcode.pm +++ b/ext/Opcode/Opcode.pm @@ -438,7 +438,7 @@ These ops are related to multi-threading. A handy tag name for a I<reasonable> default set of ops. (The current ops allowed are unstable while development continues. It will change.) - :base_core :base_mem :base_loop :base_io :base_orig + :base_core :base_mem :base_loop :base_io :base_orig :base_thread If safety matters to you (and why else would you be using the Opcode module?) then you should not rely on the definition of this, or indeed any other, optag! diff --git a/win32/makefile.mk b/win32/makefile.mk index 7f5dad30e3..b28c79f919 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -460,8 +460,8 @@ $(PERLEXE): $(PERLDLL) $(CONFIGPM) perlmain.obj .ENDIF copy splittree.pl .. $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" "../LIB/auto" - attrib -r ..\t\*.* - copy test ..\t +# attrib -r ..\t\*.* +# copy test ..\t .IF "$(CCTYPE)" != "BORLAND" |