summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/mysqlnd_debug.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'PHP-5.3' into PHP-5.4Xinchen Hui2013-01-061-1/+1
|\
| * bump yearXinchen Hui2013-01-061-1/+1
| |
| * - Year++Felipe Pena2012-01-011-1/+1
| |
| * add the BLOCK_LEAVE macro for non-gcc and non-winAndrey Hristov2011-05-041-3/+4
| |
| * reorganize the DBG_ macros, add DBG_BLOCK_XXXAndrey Hristov2011-05-041-16/+25
| |
| * - Year++Felipe Pena2011-01-011-1/+1
| |
| * add a commentAndrey Hristov2010-12-011-1/+1
| |
| * - More features for the profiling, create aggregates and dump themAndrey Hristov2010-10-291-13/+34
| | | | | | | | | | | | | | | | | | | | | | on file close. - Also add a trace modifier to switch on and off the profiling. - With additional compiler switch the profiling can be completely omitted, of course it makes sense only when --enable-debug. Because otherwise there is no tracing, thus no profiling. - Added a fix for Windows for handling trace files on different devices (special handing of ':' )
| * gettimeofday for windowsAndrey Hristov2010-10-281-6/+9
| |
| * fix windows debug buildAndrey Hristov2010-10-281-2/+7
| | | | | | | | | | better zlib detection
| * rename and remove usage of inttypes.h, not neededAndrey Hristov2010-10-251-3/+3
| |
| * profiling in trace modeAndrey Hristov2010-10-221-6/+29
| |
| * enable debug logging on windows, in debug builds, of courseAndrey Hristov2010-10-221-1/+2
| |
| * Fix shared buildAndrey Hristov2010-05-251-1/+1
| |
| * Change the way the allocator is called - through an abstractionAndrey Hristov2010-04-221-51/+51
| | | | | | | | | | | | to give the possibility of pluggability. Thanks to the macros already used the changes are not pervasive.
| * - Fix copyrightsFelipe Pena2010-04-201-2/+2
| |
| * Make it coupled - what is allocated with mnd_ should be freedAndrey Hristov2010-03-291-14/+20
| | | | | | | | | | | | | | | | with mnd_ and vice versa. Added mnd_pestrndup and mnd_pestrdup, which wrap the normal calls to be able to track this calls. Fixed some failing tests.
| * Add possibility to restrain the number of levelsAndrey Hristov2010-01-211-1/+1
| |
| * Make it GCC only feature (tracing). VC7 and up do the workAndrey Hristov2010-01-191-1/+1
| | | | | | | | | | too and it might be tweaked later.
| * fix windowsAndrey Hristov2010-01-191-0/+13
| |
| * export more functionality for phpize buildsAndrey Hristov2010-01-131-15/+15
| |
| * make mysqlnd's tracing API more reusableAndrey Hristov2010-01-131-10/+22
| |
| * MFH Fix #47819 (Getting pdo_mysql.so: undefined symbol: mysqlnd_debug_init atJohannes Schlüter2009-03-301-1/+1
| | | | | | | | | | startup)
| * MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
| |
| * MFH:Andrey Hristov2008-11-201-6/+6
| | | | | | | | | | | | Windows fixes for mysqlnd Less warnings + PHPAPI for mysqlnd_poll
| * MFH:Andrey Hristov2008-11-061-4/+4
| | | | | | | | | | | | Get rid of many defines (which simplifies the code a lot), as well as uint->unsigned int
| * MFB: Update CVS from the development treeAndrey Hristov2008-04-161-2/+0
| |
| * cvs syncAndrey Hristov2008-02-111-2/+5
| |
| * MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
| |
| * Fix build failure on Windows. Seems "free" can't be used even as method name ↵Andrey Hristov2007-10-231-1/+1
| | | | | | | | of a structure. The MS compiler (the preprocessor most probably) changes it to _free_dbg
| * Import mysqlndAndrey Hristov2007-10-051-0/+145
| | | | | Patch ext/mysql and ext/mysqli to support mysqlnd
* - Year++Felipe Pena2012-01-011-1/+1
|
* add the BLOCK_LEAVE macro for non-gcc and non-winAndrey Hristov2011-05-041-3/+4
|
* reorganize the DBG_ macros, add DBG_BLOCK_XXXAndrey Hristov2011-05-041-16/+25
|
* split mysqlnd_debug.c in 3 filesAndrey Hristov2011-03-181-61/+2
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* extending the API interface - plugins can registerAndrey Hristov2010-12-281-0/+12
| | | | | | | | themselves with a structure and can be searched. Every plugin can have statistics and they are shown under the statistics of mysqlnd in MINFO.
* - More features for the profiling, create aggregates and dump themAndrey Hristov2010-10-291-13/+34
| | | | | | | | | | | on file close. - Also add a trace modifier to switch on and off the profiling. - With additional compiler switch the profiling can be completely omitted, of course it makes sense only when --enable-debug. Because otherwise there is no tracing, thus no profiling. - Added a fix for Windows for handling trace files on different devices (special handing of ':' )
* gettimeofday for windowsAndrey Hristov2010-10-281-6/+9
|
* fix windows debug buildAndrey Hristov2010-10-281-2/+7
| | | | | better zlib detection
* rename and remove usage of inttypes.h, not neededAndrey Hristov2010-10-251-3/+3
|
* profiling in trace modeAndrey Hristov2010-10-221-6/+29
|
* enable debug logging on windows, in debug builds, of courseAndrey Hristov2010-10-221-1/+2
|
* Fix shared buildAndrey Hristov2010-05-251-1/+1
|
* Change the way the allocator is called - through an abstractionAndrey Hristov2010-04-221-51/+51
| | | | | | to give the possibility of pluggability. Thanks to the macros already used the changes are not pervasive.
* - Fix copyrightsFelipe Pena2010-04-201-2/+2
|
* Make it coupled - what is allocated with mnd_ should be freedAndrey Hristov2010-03-291-14/+20
| | | | | | | | with mnd_ and vice versa. Added mnd_pestrndup and mnd_pestrdup, which wrap the normal calls to be able to track this calls. Fixed some failing tests.
* Add possibility to restrain the number of levelsAndrey Hristov2010-01-211-1/+1
|
* Make it GCC only feature (tracing). VC7 and up do the workAndrey Hristov2010-01-191-1/+1
| | | | | too and it might be tweaked later.
* fix windowsAndrey Hristov2010-01-191-0/+13
|