diff options
author | Andrey Hristov <andrey@php.net> | 2009-06-16 09:15:09 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2009-06-16 09:15:09 +0000 |
commit | 5d3ea92ee9cf77ba914282a592b48115159bfe9b (patch) | |
tree | e36181ba0ca4780e05a46d8c2c44b01489ac7612 /ext/mysqlnd/mysqlnd_structs.h | |
parent | a1fdddce494b05ed7ac71d766585ea6febe6b3c1 (diff) | |
download | php-git-5d3ea92ee9cf77ba914282a592b48115159bfe9b.tar.gz |
Hardwire function call instead of using callbacks. We don't actually need
callbacks, it was done for making 2 functions static, not to pollute the
global functions space but that had its price of 8 bytes overheat per
allocation, which is just too much. Also making the app member 32b instead
of 64b, which should save additional 4 byte, to the total of 12 byte per
allocation of a row buffer.
Diffstat (limited to 'ext/mysqlnd/mysqlnd_structs.h')
-rw-r--r-- | ext/mysqlnd/mysqlnd_structs.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ext/mysqlnd/mysqlnd_structs.h b/ext/mysqlnd/mysqlnd_structs.h index d9f9dfcdb5..0c80a5316c 100644 --- a/ext/mysqlnd/mysqlnd_structs.h +++ b/ext/mysqlnd/mysqlnd_structs.h @@ -45,12 +45,10 @@ struct st_mysqlnd_memory_pool struct st_mysqlnd_memory_pool_chunk { - uint64_t app; + uint32_t app; MYSQLND_MEMORY_POOL *pool; zend_uchar *ptr; - unsigned int size; - void (*resize_chunk)(MYSQLND_MEMORY_POOL_CHUNK * chunk, unsigned int size TSRMLS_DC); - void (*free_chunk)(MYSQLND_MEMORY_POOL_CHUNK * chunk, zend_bool cache_it TSRMLS_DC); + uint32_t size; zend_bool from_pool; }; |