diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-02-26 02:48:23 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-02-26 02:48:23 +0000 |
commit | 10cc9d2a36974e2e1175dbda57d8d05e2b0ce49e (patch) | |
tree | e1e4f9735fc7ee12c9722ea1365f6d3d9155a383 /win32/config_H.vc | |
parent | 6b49d2665cf5b4cee8758bc654f9290f3855049e (diff) | |
download | perl-10cc9d2a36974e2e1175dbda57d8d05e2b0ce49e.tar.gz |
Rename use64bits to use64bitint;
rename usefull64bits to use64bitall.
p4raw-id: //depot/cfgperl@5261
Diffstat (limited to 'win32/config_H.vc')
-rw-r--r-- | win32/config_H.vc | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/win32/config_H.vc b/win32/config_H.vc index c5d9738780..6677bcc4ce 100644 --- a/win32/config_H.vc +++ b/win32/config_H.vc @@ -1884,10 +1884,10 @@ /*#define HAS_SCM_RIGHTS /**/ /* Sock_size_t: - * This symbol holds the type used for the size argument - * of various socket calls. + * This symbol holds the type used for the size argument of + * various socket calls (just the base type, not the pointer-to). */ -#define Sock_size_t int * /**/ +#define Sock_size_t int /**/ /* HAS_SQRTL: * This symbol, if defined, indicates that the sqrtl routine is @@ -2766,30 +2766,30 @@ */ #define Uid_t uid_t /* UID type */ -/* USE_64_BITS: - * This symbol, if defined, indicates that 64-bit integers should - * be used when available. If not defined, the native integers - * will be employed (be they 32 or 64 bits). The minimal possible - * 64-bitness is used, just enough to get 64-bit integers into Perl. - * This may mean using for example "long longs", while your memory - * may still be limited to 2 gigabytes. - */ -#ifndef USE_64_BITS -/*#define USE_64_BITS /**/ -#endif - -/* USE_FULL_64_BITS: - * This variable conditionally defines the USE_FULL_64_BITS symbol, +/* USE_64_BIT_ALL: + * This variable conditionally defines the USE_64_BIT_ALL symbol, * and indicates that 64-bit integer types should be used * when available. The maximal possible * 64-bitness is employed: LP64 or ILP64, meaning that you will * be able to use more than 2 gigabytes of memory. This mode is - * even more binary incompatible than USE_64_BITS. You may not + * even more binary incompatible than USE_64_BIT_INT. You may not * be able to run the resulting executable in a 32-bit CPU at all or * you may need at least to reboot your OS to 64-bit mode. */ -#ifndef USE_FULL_64_BITS -/*#define USE_FULL_64_BITS /**/ +#ifndef USE_64_BIT_ALL +/*#define USE_64_BIT_ALL /**/ +#endif + +/* USE_64_BIT_INT: + * This symbol, if defined, indicates that 64-bit integers should + * be used when available. If not defined, the native integers + * will be employed (be they 32 or 64 bits). The minimal possible + * 64-bitness is used, just enough to get 64-bit integers into Perl. + * This may mean using for example "long longs", while your memory + * may still be limited to 2 gigabytes. + */ +#ifndef USE_64_BIT_INT +/*#define USE_64_BIT_INT /**/ #endif /* USE_LARGE_FILES: |