index
:
sqlite
master
sqlite mirror
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
malloc.c
Commit message (
Expand
)
Author
Age
*
Fix an off-by-one error in the scratch memory allocator.
drh
2010-09-02
*
Use sqlite3_mutex_notheld() instead of !sqlite3_mutex_held() inside
drh
2010-09-02
*
If MEM_STATUS is disabled, avoid holding the STATIC_MEM mutex when calling th...
dan
2010-09-02
*
Add evidence mark comments to source code. Add additional information to the
drh
2010-08-31
*
Refactor the implementation of the scratch memory allocator. Add the
drh
2010-08-27
*
Remove unnecessary code from malloc.c. Enhance pcache1.c so that is tries
drh
2010-08-27
*
Fix a bug in the SQLITE_STATUS_MALLOC_COUNT counter. Add an ALWAYS() around
drh
2010-07-26
*
Add the SQLITE_STATUS_MALLOC_COUNT option for sqlite3_status().
drh
2010-07-26
*
Add virtual table test cases to dbstatus.test.
dan
2010-07-26
*
Make sure all memory from sqlite3DbMalloc() is freed by sqlite3DbFree()
drh
2010-07-26
|
\
|
*
Make sure all memory from sqlite3DbMalloc() is freed by sqlite3DbFree() and
drh
2010-07-24
*
|
Experimental code to measure memory consumed by database schemas and prepared...
dan
2010-07-24
|
/
*
Strenghten an assert() in malloc.c that helps to ensure that allocated memory
drh
2010-07-23
*
Fix two asserts on the scratch allocator to allow for up to two outstanding
drh
2010-06-26
*
Add assert()s to mem2.c (activated by SQLITE_MEMDEBUG) which verify that
drh
2010-03-12
*
Remove the obsolete "$Id:$" RCS identifier strings from the source code.
drh
2009-11-10
*
Remove some obsolete code within #if 0 that was causing developer concern.
drh
2009-10-26
*
Fix obscure issues with the memsys5 memory allocator. Arrange that the
drh
2009-08-18
*
Enhanced documentation and minor code tweaks in preparation for hardening
drh
2009-08-17
*
Code simplifications in support of structural testing. (CVS 6900)
drh
2009-07-17
*
Code simplifications and comment improvements in support of structural
drh
2009-07-16
*
Fix a bug in sqlite3_realloc() - if called with a size of more than
drh
2009-06-27
*
Remove incorrect NEVER() macros from malloc.c. The allocations can be
drh
2009-06-26
*
Changes to facility full coverage testing of util.c. (CVS 6597)
drh
2009-05-03
*
Changes to insure that lookaside memory allocations are never used to hold
drh
2009-03-24
*
Add asserts to make sure that database connection locks are held when
drh
2009-03-23
*
Use the ROUND8() macro to round an integer up to the nearest multiple of 8 an...
danielk1977
2009-03-23
*
Corrected typos and misspellings. Ticket #3702. (CVS 6336)
shane
2009-03-05
*
Remove code in malloc.c that was already commented out using #if 0. (CVS 6306)
drh
2009-02-19
*
Add tests to double-check that nothing within SQLite ever tries to allocate
drh
2009-02-17
*
Allow sqlite3_shutdown() to be called by a process before sqlite3_initialize(...
danielk1977
2009-02-17
*
When not compiling for an EBCDIC system, use built-in alternatives to the tolowe
danielk1977
2009-01-20
*
Fix a compile error in an assert() and a warning with MSVC builds. (CVS 6032)
shane
2008-12-16
*
Make sure the memory returned from sqlite3ScratchMalloc() is 8-byte aligned.
drh
2008-12-16
*
Additional work at eliminating silly compiler warnings. (CVS 6010)
drh
2008-12-10
*
Never use strlen(). Use our own internal sqlite3Strlen30() which is
drh
2008-12-10
*
Make use of sqlite3DbMallocSize to maximize the size of growable buffers
drh
2008-12-05
*
Changes to avoid "unused parameter" compiler warnings. (CVS 5921)
danielk1977
2008-11-19
*
Reduce the number of "missing initializer" warnings. (CVS 5915)
danielk1977
2008-11-18
*
Modifications to avoid unsigned/signed comparisons in various files. (CVS 5914)
danielk1977
2008-11-17
*
Added SQLITE_OMIT_DEPRECATED compile time option to leave out deprecated func...
shane
2008-10-12
*
Fix to sqlite3DbMallocRaw() when SQLITE_OMIT_LOOKASIDE is defined so that
drh
2008-10-11
*
Added an assert() to detect lookaside memory leaks. Also added the
drh
2008-10-11
*
Always transform error code SQLITE_IOERR_NOMEM to SQLITE_NOMEM before returni...
danielk1977
2008-09-23
*
Modified core to not call deprecated functions sqlite3_memory_alarm() and sql...
shane
2008-09-04
*
Explicitly initialize at least the first field of every struct. This is to wo...
danielk1977
2008-09-02
*
Change some more global variables to work with OMIT_WSD. (CVS 5660)
danielk1977
2008-09-02
*
Begin adding support for the SQLITE_OMIT_WSD macro. Some (many) WSD variables...
danielk1977
2008-09-01
*
Move a call to sqlite3_mutex_leave() to protect calls to sqlite3StatusAdd() r...
danielk1977
2008-08-29
*
Fix the functionality associated with sqlite3_release_memory() and sqlite3_so...
danielk1977
2008-08-21
[next]