summaryrefslogtreecommitdiff
path: root/UPGRADING.INTERNALS
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-08-22 13:40:45 +0200
committerAnatol Belski <ab@php.net>2014-08-22 13:40:45 +0200
commit4c56e68b7f3506cb347ebe82b9af864694da280a (patch)
tree775c2f45157ba1f726abd3578e5f914e4d87ae50 /UPGRADING.INTERNALS
parentfa6fe06a86b04a913af9d1ce4bcbf09fd66c8bf7 (diff)
downloadphp-git-4c56e68b7f3506cb347ebe82b9af864694da280a.tar.gz
note on LFS macros
Diffstat (limited to 'UPGRADING.INTERNALS')
-rw-r--r--UPGRADING.INTERNALS10
1 files changed, 10 insertions, 0 deletions
diff --git a/UPGRADING.INTERNALS b/UPGRADING.INTERNALS
index f0eed8c0d4..d446dcea3b 100644
--- a/UPGRADING.INTERNALS
+++ b/UPGRADING.INTERNALS
@@ -11,6 +11,7 @@ UPGRADE NOTES - PHP X.Y
f. zend_parse_parameters() specs
g. sprintf() formats
h. HashTable API
+ i. New portable macros for large file support
2. Build system changes
a. Unix build system changes
@@ -79,6 +80,15 @@ UPGRADE NOTES - PHP X.Y
Datatype for array indexes was changed to php_uint_t, for string keys to zend_string *.
+ i. New portable macros for large file support
+
+ Function Alias Comment
+ stat, _stat64 zend_stat for use with zend_stat_t
+ fstat, _fstat64 zend_fstat for use with zend_stat_t
+ lseek, _lseeki64 zend_lseek for use with zend_off_t
+ ftell, _ftelli64 zend_ftell for use with zend_off_t
+ fseek, _fseeki64 zend_fseek for use with zend_off_t
+
========================
2. Build system changes
========================