diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2006-12-05 14:55:14 +0000 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2006-12-05 14:55:14 +0000 |
commit | 233e16ceab6589cdfcfeefabef027f39026bb05f (patch) | |
tree | d755a659ecdf3027b1b22b8bb5d973b0bdaa4457 /Porting | |
parent | 3890ecea71e8d1097fd1d7614b8a095c06dbb4f5 (diff) | |
download | perl-233e16ceab6589cdfcfeefabef027f39026bb05f.tar.gz |
Introduction of d_pseudofork
p4raw-id: //depot/perl@29467
Diffstat (limited to 'Porting')
-rw-r--r-- | Porting/Glossary | 4 | ||||
-rw-r--r-- | Porting/config.sh | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/Porting/Glossary b/Porting/Glossary index 8f92242356..4c6fc60050 100644 --- a/Porting/Glossary +++ b/Porting/Glossary @@ -1572,6 +1572,10 @@ d_procselfexe (d_procselfexe.U): Defined if $procselfexe is symlink to the absolute pathname of the executing program. +d_pseudofork (d_vfork.U): + This variable conditionally defines the HAS_PSEUDOFORK symbol, + which indicates that an emulation of the fork routine is available. + d_pthread_atfork (d_pthread_atfork.U): This variable conditionally defines the HAS_PTHREAD_ATFORK symbol, which indicates to the C program that the pthread_atfork() diff --git a/Porting/config.sh b/Porting/config.sh index acdce83543..fe4d39e1f0 100644 --- a/Porting/config.sh +++ b/Porting/config.sh @@ -345,6 +345,7 @@ d_poll='define' d_portable='define' d_printf_format_null='define' d_procselfexe='define' +d_pseudofork='undef' d_pthread_atfork='undef' d_pthread_attr_setscope='define' d_pthread_yield='define' |