summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/mysqlnd_structs.h
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2008-01-28 22:50:06 +0000
committerAndrey Hristov <andrey@php.net>2008-01-28 22:50:06 +0000
commit2033c1b7f2c50146c917a5769a6996f0188f5e14 (patch)
tree1b03a898c92ba2d69c39e401165318bd1e1bf17b /ext/mysqlnd/mysqlnd_structs.h
parente9914e9d06b684a4b788584790767868bd7b7321 (diff)
downloadphp-git-2033c1b7f2c50146c917a5769a6996f0188f5e14.tar.gz
some config.w32 fixes
moved mysqlnd's block allocator to a separate file and also now it's part of the connection, no MT problems.
Diffstat (limited to 'ext/mysqlnd/mysqlnd_structs.h')
-rw-r--r--ext/mysqlnd/mysqlnd_structs.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd_structs.h b/ext/mysqlnd/mysqlnd_structs.h
index 4d81c287cc..8fca5f7ce3 100644
--- a/ext/mysqlnd/mysqlnd_structs.h
+++ b/ext/mysqlnd/mysqlnd_structs.h
@@ -41,7 +41,6 @@ struct st_mysqlnd_memory_pool
uint free_chunk_list_elements;
MYSQLND_MEMORY_POOL_CHUNK* (*get_chunk)(MYSQLND_MEMORY_POOL * pool, uint size TSRMLS_DC);
- void (*free_contents)(MYSQLND_MEMORY_POOL * pool TSRMLS_DC);
};
struct st_mysqlnd_memory_pool_chunk
@@ -444,6 +443,8 @@ struct st_mysqlnd_connection
/* qcache */
MYSQLND_QCACHE *qcache;
+ MYSQLND_MEMORY_POOL * result_set_memory_pool;
+
/* stats */
MYSQLND_STATS stats;