Reorder to save alignment size (of course, only for common used structs)

This commit is contained in:
Xinchen Hui 2014-12-15 01:06:19 -05:00
parent 8f177fde90
commit 7081c9bca6

View file

@ -210,6 +210,8 @@ struct _php_stream {
zend_resource *ctx;
int flags; /* PHP_STREAM_FLAG_XXX */
int eof;
/* buffer */
zend_off_t position; /* of underlying stream */
unsigned char *readbuf;
@ -220,8 +222,6 @@ struct _php_stream {
/* how much data to read when filling buffer */
size_t chunk_size;
int eof;
#if ZEND_DEBUG
const char *open_filename;
uint open_lineno;