summaryrefslogtreecommitdiff
path: root/Porting
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-11-16 15:46:05 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-11-16 15:46:05 +0000
commitef9f17be917c8cd6b7df3ddfb35bc3e8431ce7b1 (patch)
tree3f41ea20c03accc2c97bfb8338c7219352b71578 /Porting
parentc758dd7785a50bb172f25f223528b35a0213e9c5 (diff)
downloadperl-ef9f17be917c8cd6b7df3ddfb35bc3e8431ce7b1.tar.gz
Add HAS_SBRK_PROTO.
p4raw-id: //depot/perl@7710
Diffstat (limited to 'Porting')
-rw-r--r--Porting/Glossary6
-rw-r--r--Porting/config.sh5
-rw-r--r--Porting/config_H11
3 files changed, 19 insertions, 3 deletions
diff --git a/Porting/Glossary b/Porting/Glossary
index 6441fd8d7b..2233779fdb 100644
--- a/Porting/Glossary
+++ b/Porting/Glossary
@@ -1251,6 +1251,12 @@ d_sanemcmp (d_sanemcmp.U):
the memcpy() routine is available and can be used to compare relative
magnitudes of chars with their high bits set.
+d_sbrkproto (d_sbrkproto.U):
+ This variable conditionally defines the HAS_SBRK_PROTO symbol,
+ which indicates to the C program that the system provides
+ a prototype for the sbrk() function. Otherwise, it is
+ up to the program to supply one.
+
d_sched_yield (d_pthread_y.U):
This variable conditionally defines the HAS_SCHED_YIELD
symbol if the sched_yield routine is available to yield
diff --git a/Porting/config.sh b/Porting/config.sh
index 654bec78ab..9e0e300455 100644
--- a/Porting/config.sh
+++ b/Porting/config.sh
@@ -8,7 +8,7 @@
# Package name : perl5
# Source directory : /m/fs/work/work/permanent/perl/pp4/perl
-# Configuration time: Thu Nov 16 03:24:59 EET 2000
+# Configuration time: Thu Nov 16 16:43:36 EET 2000
# Configured by : jhi
# Target system : osf1 alpha.hut.fi v4.0 878 alpha
@@ -62,7 +62,7 @@ ccsymbols='__alpha=1 __LANGUAGE_C__=1 __osf__=1 __unix__=1 _LONGLONG=1 _SYSTYPE_
ccversion='V5.6-082'
cf_by='jhi'
cf_email='yourname@yourhost.yourplace.com'
-cf_time='Thu Nov 16 03:24:59 EET 2000'
+cf_time='Thu Nov 16 16:43:36 EET 2000'
charsize='1'
chgrp=''
chmod=''
@@ -286,6 +286,7 @@ d_rmdir='define'
d_safebcpy='define'
d_safemcpy='undef'
d_sanemcmp='define'
+d_sbrkproto='define'
d_sched_yield='define'
d_scm_rights='define'
d_seekdir='define'
diff --git a/Porting/config_H b/Porting/config_H
index dc2f0f1cd6..59537cba0b 100644
--- a/Porting/config_H
+++ b/Porting/config_H
@@ -17,7 +17,7 @@
/*
* Package name : perl5
* Source directory : /m/fs/work/work/permanent/perl/pp4/perl
- * Configuration time: Thu Nov 16 03:24:59 EET 2000
+ * Configuration time: Thu Nov 16 16:43:36 EET 2000
* Configured by : jhi
* Target system : osf1 alpha.hut.fi v4.0 878 alpha
*/
@@ -3211,4 +3211,13 @@
*/
#define HAS_FSYNC /**/
+/* HAS_SBRK_PROTO:
+ * This symbol, if defined, indicates that the system provides
+ * a prototype for the sbrk() function. Otherwise, it is up
+ * to the program to supply one. Good guesses are
+ * extern void* sbrk _((int));
+ * extern void* sbrk _((size_t));
+ */
+#define HAS_SBRK_PROTO /**/
+
#endif