diff options
author | Andrey Hristov <andrey@php.net> | 2008-01-29 11:59:53 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2008-01-29 11:59:53 +0000 |
commit | 00877eff13cdc174724afa3955439742dbf26102 (patch) | |
tree | a54f56629ade353dfc85338e199a0403bbe043a5 /ext/mysqlnd/mysqlnd_statistics.c | |
parent | 9770b3cb00fc015d05e21cb151642d37dace9d3d (diff) | |
download | php-git-00877eff13cdc174724afa3955439742dbf26102.tar.gz |
Moved initialization code into a function.
Diffstat (limited to 'ext/mysqlnd/mysqlnd_statistics.c')
-rw-r--r-- | ext/mysqlnd/mysqlnd_statistics.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/ext/mysqlnd/mysqlnd_statistics.c b/ext/mysqlnd/mysqlnd_statistics.c index 3a6a0d51d4..7aaf30ca94 100644 --- a/ext/mysqlnd/mysqlnd_statistics.c +++ b/ext/mysqlnd/mysqlnd_statistics.c @@ -145,6 +145,32 @@ PHPAPI void _mysqlnd_get_client_stats(zval *return_value TSRMLS_DC ZEND_FILE_LIN /* }}} */ +/* {{{ mysqlnd_stats_init */ +void +mysqlnd_stats_init(MYSQLND_STATS ** stats) +{ + *stats = calloc(1, sizeof(MYSQLND_STATS)); +#ifdef ZTS + (*stats)->LOCK_access = tsrm_mutex_alloc(); +#endif + +} +/* }}} */ + + +/* {{{ mysqlnd_stats_end */ +void +mysqlnd_stats_end(MYSQLND_STATS * stats) +{ +#ifdef ZTS + tsrm_mutex_free(stats->LOCK_access); +#endif + /* mnd_free will reference LOCK_access and crash...*/ + free(stats); +} +/* }}} */ + + /* * Local variables: * tab-width: 4 |