summaryrefslogtreecommitdiff
path: root/U/d_vfork.U
diff options
context:
space:
mode:
authorLarry Wall <lwall@netlabs.com>1994-10-17 23:00:00 +0000
committerLarry Wall <lwall@netlabs.com>1994-10-17 23:00:00 +0000
commita0d0e21ea6ea90a22318550944fe6cb09ae10cda (patch)
treefaca1018149b736b1142f487e44d1ff2de5cc1fa /U/d_vfork.U
parent85e6fe838fb25b257a1b363debf8691c0992ef71 (diff)
downloadperl-a0d0e21ea6ea90a22318550944fe6cb09ae10cda.tar.gz
perl 5.000perl-5.000
[editor's note: this commit combines approximate 4 months of furious releases of Andy Dougherty and Larry Wall - see pod/perlhist.pod for details. Andy notes that; Alas neither my "Irwin AccuTrack" nor my DC 600A quarter-inch cartridge backup tapes from that era seem to be readable anymore. I guess 13 years exceeds the shelf life for that backup technology :-(. ]
Diffstat (limited to 'U/d_vfork.U')
-rw-r--r--U/d_vfork.U56
1 files changed, 0 insertions, 56 deletions
diff --git a/U/d_vfork.U b/U/d_vfork.U
deleted file mode 100644
index fb674340e2..0000000000
--- a/U/d_vfork.U
+++ /dev/null
@@ -1,56 +0,0 @@
-?RCS: $Id: d_vfork.U,v 3.0.1.2 1993/10/16 13:49:39 ram Exp $
-?RCS:
-?RCS: Copyright (c) 1991-1993, Raphael Manfredi
-?RCS:
-?RCS: You may redistribute only under the terms of the Artistic Licence,
-?RCS: as specified in the README file that comes with the distribution.
-?RCS: You may reuse parts of this distribution only within the terms of
-?RCS: that same Artistic Licence; a copy of which may be found at the root
-?RCS: of the source tree for dist 3.0.
-?RCS:
-?RCS: $Log: d_vfork.U,v $
-?RCS: Revision 3.0.1.2 1993/10/16 13:49:39 ram
-?RCS: patch12: added magic for vfork()
-?RCS:
-?RCS: Revision 3.0.1.1 1993/09/13 16:06:57 ram
-?RCS: patch10: removed automatic remapping of vfork on fork (WAD)
-?RCS: patch10: added compatibility code for older config.sh (WAD)
-?RCS:
-?RCS: Revision 3.0 1993/08/18 12:07:55 ram
-?RCS: Baseline for dist 3.0 netwide release.
-?RCS:
-?MAKE:d_vfork: Inlibc
-?MAKE: -pick add $@ %<
-?S:d_vfork:
-?S: This variable conditionally defines the HAS_VFORK symbol, which
-?S: indicates the vfork() routine is available.
-?S:.
-?C:HAS_VFORK (VFORK):
-?C: This symbol, if defined, indicates that vfork() exists.
-?C:.
-?H:#$d_vfork HAS_VFORK /**/
-?H:.
-?M:vfork: HAS_VFORK
-?M:#ifndef HAS_VFORK
-?M:#define vfork fork
-?M:#endif
-?M:.
-?LINT:set d_vfork
-: see if there is a vfork
-set vfork d_vfork
-eval $inlibc
-: But do we want to use it. vfork is reportedly unreliable in
-: perl in Solaris 2.x, and probably elsewhere.
-case "$d_vfork" in
-define)
- dflt='n'
- rp="Some systems have problems with vork. Do you want to use it?"
- . ./myread
- case "$ans" in
- y|Y) ;;
- *) echo "Ok, we won't use vfork."
- d_vfork="$undef"
- ;;
- esac
- ;;
-esac