summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/mysqlnd_block_alloc.c
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headers to 2017Sammy Kaye Powers2017-01-041-1/+1
|
* Fix emails in headers. @mysql.com addresses are no more since many years.Andrey Hristov2016-03-161-3/+3
|
* Merge branch 'PHP-5.6' into PHP-7.0Lior Kaplan2016-01-011-1/+1
|\ | | | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016)
| * Happy new year (Update copyright to 2016)Lior Kaplan2016-01-011-1/+1
| |
| * bump yearXinchen Hui2015-01-151-1/+1
| |
* | Use PHP memory manager for mysqlnd memory pools.Dmitry Stogov2015-04-021-11/+11
| |
* | bump yearXinchen Hui2015-01-151-1/+1
| |
* | first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-7/+7
| |
* | s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
|/
* Bump yearXinchen Hui2014-01-031-1/+1
|
* bump yearXinchen Hui2013-01-061-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* WS fixesAndrey Hristov2010-09-231-1/+0
|
* Handle gracefully OOM in mysqlnd_mempool_create and up the stackAndrey Hristov2010-05-031-7/+11
|
* Handle OOM in block_alloc_get_chunk, and also in the callerAndrey Hristov2010-05-031-22/+23
| | | | | in mysqlnd_wireprotocol.c
* Remove unused parameterAndrey Hristov2010-05-031-2/+6
|
* One more case to handle in case of OOM, in block_alloc_resize_chunkAndrey Hristov2010-05-031-1/+6
|
* Handle OOM when resizing blocks during data fetchAndrey Hristov2010-05-031-2/+8
|
* Remove dead code and add possibility to fine tune the size ofAndrey Hristov2010-04-221-31/+4
| | | | | a mempool (used for result sets).
* - Fix copyrightsFelipe Pena2010-04-201-2/+2
|
* CS + WS changesAndrey Hristov2010-04-151-1/+1
|
* export more functionality for phpize buildsAndrey Hristov2010-01-131-2/+2
|
* Revert mysqlnd to RC3 state after issues with pconnectsJohannes Schlüter2009-06-251-12/+9
|
* MFH:Andrey Hristov2009-06-171-8/+8
| | | | | | | | | | | | | | | | Fix two problems: - The value of mysqli_get_client_info() has been changed recently and did not include "mysqlnd" anymore thus the test suite was thinking the build is always libmysql. This did not kept the suite from running pconn tests - Going back to the libc allocator because the memory arena could be on a persistent connections. If the build is not debug there will be no error but the memory will be freed and in the second use of this pconn freed memory will be used - not good! For now the arena doesn't take an argument whether it should allocate persistently or not, thus persistent is safe for now. Johannes gave his +1 to commit this.
* MFH:Andrey Hristov2009-06-161-13/+14
| | | | | | | | | | 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.
* MFH:Andrey Hristov2009-06-111-4/+6
| | | | | | Protect the code when variable is NULL, which should never happen, but anyway, you know about "never happens" :)
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* MFH:Andrey Hristov2008-11-061-3/+3
| | | | | | Get rid of many defines (which simplifies the code a lot), as well as uint->unsigned int
* Fix a leak, memory warning and failing test case.Andrey Hristov2008-02-041-0/+1
|
* MFH: fix win32 buildRob Richards2008-01-291-2/+2
|
* some config.w32 fixesAndrey Hristov2008-01-281-0/+201
moved mysqlnd's block allocator to a separate file and also now it's part of the connection, no MT problems.