diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-11 18:33:23 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-11 18:33:23 +0000 |
commit | 0c0643d0c14bab007848538c44110f5bd58ca506 (patch) | |
tree | c08b6351fb5ff12f3f01e8659f243b8da550621a /vos | |
parent | 68d873c6705870e19566e8337d808952cc8ec13e (diff) | |
download | perl-0c0643d0c14bab007848538c44110f5bd58ca506.tar.gz |
Add getpagesize() probing, on non-UNIX guess 'undef'.
p4raw-id: //depot/perl@7646
Diffstat (limited to 'vos')
-rw-r--r-- | vos/config.alpha.def | 1 | ||||
-rw-r--r-- | vos/config.alpha.h | 7 | ||||
-rw-r--r-- | vos/config.ga.def | 1 | ||||
-rw-r--r-- | vos/config.ga.h | 7 |
4 files changed, 16 insertions, 0 deletions
diff --git a/vos/config.alpha.def b/vos/config.alpha.def index c14b9ce3ea..e58fd1294f 100644 --- a/vos/config.alpha.def +++ b/vos/config.alpha.def @@ -91,6 +91,7 @@ $d_getnbyaddr='define' $d_getnbyname='define' $d_getnent='define' $d_getnetprotos='define' +$d_getpagsz='undef' $d_getpbyname='define' $d_getpbynumber='define' $d_getpent='define' diff --git a/vos/config.alpha.h b/vos/config.alpha.h index 5b542a2f94..66b3d7a5e9 100644 --- a/vos/config.alpha.h +++ b/vos/config.alpha.h @@ -220,6 +220,13 @@ */ #define HAS_GETLOGIN /**/ +/* HAS_GETPAGESIZE: + * This symbol, if defined, indicates that the getpagesize system call + * is available to get system page size, which is the granularity of + * many memory management calls. + */ +/*#define HAS_GETPAGESIZE /**/ + /* HAS_GETPGID: * This symbol, if defined, indicates to the C program that * the getpgid(pid) function is available to get the diff --git a/vos/config.ga.def b/vos/config.ga.def index 465205c27c..f7283408a1 100644 --- a/vos/config.ga.def +++ b/vos/config.ga.def @@ -91,6 +91,7 @@ $d_getnbyaddr='define' $d_getnbyname='define' $d_getnent='define' $d_getnetprotos='define' +$d_getpagsz='undef' $d_getpbyname='define' $d_getpbynumber='define' $d_getpent='define' diff --git a/vos/config.ga.h b/vos/config.ga.h index 26cb1769f9..4bea2da04c 100644 --- a/vos/config.ga.h +++ b/vos/config.ga.h @@ -220,6 +220,13 @@ */ #define HAS_GETLOGIN /**/ +/* HAS_GETPAGESIZE: + * This symbol, if defined, indicates that the getpagesize system call + * is available to get system page size, which is the granularity of + * many memory management calls. + */ +/*#define HAS_GETPAGESIZE /**/ + /* HAS_GETPGID: * This symbol, if defined, indicates to the C program that * the getpgid(pid) function is available to get the |