diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-05-24 06:05:17 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-05-24 06:05:17 +0000 |
commit | 505656d388154e1318fd47e0b746bb415dc9e6cc (patch) | |
tree | 8e2ce89e6d536e2d256d4359c25202248f511f39 /Porting | |
parent | 58d975c3f477b5042b8ebb54dfefbe22116c9794 (diff) | |
download | perl-505656d388154e1318fd47e0b746bb415dc9e6cc.tar.gz |
Regen Glossary et al.
p4raw-id: //depot/perl@19606
Diffstat (limited to 'Porting')
-rw-r--r-- | Porting/Glossary | 7 | ||||
-rw-r--r-- | Porting/config.sh | 7 | ||||
-rw-r--r-- | Porting/config_H | 11 |
3 files changed, 19 insertions, 6 deletions
diff --git a/Porting/Glossary b/Porting/Glossary index d57ce1d38c..b5b24a97ac 100644 --- a/Porting/Glossary +++ b/Porting/Glossary @@ -296,7 +296,7 @@ cpp (Loc.U): the value is reset to a plain "cpp" and is not useful. cpp_stuff (cpp_stuff.U): - This variable contains an identification of the catenation mechanism + This variable contains an identification of the concatenation mechanism used by the C preprocessor. cppccsymbols (Cppsym.U): @@ -1479,6 +1479,11 @@ d_pthread_atfork (d_pthread_atfork.U): which indicates to the C program that the pthread_atfork() routine is available. +d_pthread_attr_setscope (d_pthread_attr_ss.U): + This variable conditionally defines HAS_PTHREAD_ATTR_SETSCOPE if + pthread_attr_setscope() is available to set the contention scope + attribute of a thread attribute object. + d_pthread_yield (d_pthread_y.U): This variable conditionally defines the HAS_PTHREAD_YIELD symbol if the pthread_yield routine is available to yield diff --git a/Porting/config.sh b/Porting/config.sh index 73dcf1bfee..504233e738 100644 --- a/Porting/config.sh +++ b/Porting/config.sh @@ -8,7 +8,7 @@ # Package name : perl5 # Source directory : . -# Configuration time: Wed Apr 23 22:22:47 EET DST 2003 +# Configuration time: Sat May 24 10:17:06 EET DST 2003 # Configured by : jhi # Target system : osf1 kosh.hut.fi v5.1 2650 alpha @@ -59,11 +59,11 @@ ccdlflags=' -Wl,-rpath,/opt/perl/lib/5.9.0/alpha-dec_osf/CORE' ccflags='-std -D_INTRINSICS -fprm d -ieee -DLANGUAGE_C' ccflags_uselargefiles='' ccname='cc' -ccsymbols='__alpha=1 __ALPHA=1 __Alpha_AXP=1 __arch64__=1 __DATE__="Apr __DECC=1 __DECC_MODE_RELAXED=1 __DECC_VER=60590011 __digital__=1 __IEEE_FLOAT=1 __INITIAL_POINTER_SIZE=0 __LANGUAGE_C__=1 __osf__=1 __PRAGMA_ENVIRONMENT=1 __STDC__=0 __STDC_HOSTED__=1 __STDC_VERSION__=199901L __TIME__="22:23:42" __unix__=1 __X_FLOAT=1 _LONGLONG=1 _SYSTYPE_BSD=1' +ccsymbols='__alpha=1 __ALPHA=1 __Alpha_AXP=1 __arch64__=1 __DATE__="May __DECC=1 __DECC_MODE_RELAXED=1 __DECC_VER=60590011 __digital__=1 __IEEE_FLOAT=1 __INITIAL_POINTER_SIZE=0 __LANGUAGE_C__=1 __osf__=1 __PRAGMA_ENVIRONMENT=1 __STDC__=0 __STDC_HOSTED__=1 __STDC_VERSION__=199901L __TIME__="10:18:27" __unix__=1 __X_FLOAT=1 _LONGLONG=1 _SYSTYPE_BSD=1' ccversion='V6.5-011' cf_by='jhi' cf_email='yourname@yourhost.yourplace.com' -cf_time='Wed Apr 23 22:22:47 EET DST 2003' +cf_time='Sat May 24 10:17:06 EET DST 2003' charsize='1' chgrp='' chmod='chmod' @@ -326,6 +326,7 @@ d_poll='define' d_portable='define' d_procselfexe='undef' d_pthread_atfork='undef' +d_pthread_attr_setscope='undef' d_pthread_yield='undef' d_pwage='undef' d_pwchange='undef' diff --git a/Porting/config_H b/Porting/config_H index f66ede8bf9..fe82d9d14e 100644 --- a/Porting/config_H +++ b/Porting/config_H @@ -17,7 +17,7 @@ /* * Package name : perl5 * Source directory : . - * Configuration time: Wed Apr 23 22:22:47 EET DST 2003 + * Configuration time: Sat May 24 10:17:06 EET DST 2003 * Configured by : jhi * Target system : osf1 kosh.hut.fi v5.1 2650 alpha */ @@ -1480,7 +1480,7 @@ #define OSVERS "5.1b" /**/ /* CAT2: - * This macro catenates 2 tokens together. + * This macro concatenates 2 tokens together. */ /* STRINGIFY: * This macro surrounds its token with double quotes. @@ -2674,6 +2674,13 @@ #define PROCSELFEXE_PATH /**/ #endif +/* HAS_PTHREAD_ATTR_SETSCOPE: + * This symbol, if defined, indicates that the pthread_attr_setscope + * system call is available to set the contention scope attribute of + * a thread attribute object. + */ +/*#define HAS_PTHREAD_ATTR_SETSCOPE / **/ + /* HAS_READV: * This symbol, if defined, indicates that the readv routine is * available to do gather reads. You will also need <sys/uio.h> |