diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-03-16 01:50:13 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-03-16 01:50:13 +0000 |
commit | a13ea748a87ffd2f0f8caa997bddc292033a30e1 (patch) | |
tree | 14346f4dcc4db2ab3f38f97dc09e6e22d9db732d /vos | |
parent | 879501902ac32f49423b30e9d6dcf0a0dd751b82 (diff) | |
download | perl-a13ea748a87ffd2f0f8caa997bddc292033a30e1.tar.gz |
Fix pp_send() sizes (pass a Size_t, not an Off_t, and
return a SSize_t, not an Off_t); add a note about a slightly
similar situation in pp_truncate(); introduce $sizesize
for Configure; update EPOC, VOS, Win32, and VMS for the
sizesize; minor updates on the EPOC config file; reword
socklen_t message slightly; fix fpossize (though unused currently)
p4raw-id: //depot/cfgperl@5760
Diffstat (limited to 'vos')
-rw-r--r-- | vos/config.def | 1 | ||||
-rw-r--r-- | vos/config.h | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/vos/config.def b/vos/config.def index 34f57709e4..10d44a272d 100644 --- a/vos/config.def +++ b/vos/config.def @@ -414,6 +414,7 @@ $sitearchexp='' $sitelib='/system/ported/perl/lib/site/5.005' $sitelibexp='/system/ported/perl/lib/site/5.005' $sitelib_stem='/system/ported/perl/lib/site' +$sizesize='4' $sizetype='size_t' $socksizetype='int' $sPRIfldbl='"Lf"' diff --git a/vos/config.h b/vos/config.h index 78e5c693fe..55bb25f66a 100644 --- a/vos/config.h +++ b/vos/config.h @@ -2801,6 +2801,11 @@ #define SITELIB_EXP "/system/ported/perl/lib/site/5.005" /**/ #define SITELIB_STEM "/system/ported/perl/lib/site" /**/ +/* Size_t_size: + * This symbol holds the size of a Size_t in bytes. + */ +#define Size_t_size 4 /* */ + /* Size_t: * This symbol holds the type used to declare length parameters * for string functions. It is usually size_t, but may be |