Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Document the SQLITE_WIN32_HEAP_CREATE and SQLITE_WIN32_MALLOC_VALIDATE compile-time options. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9816bbf88cc35432c290735aa836744a |
User & Date: | mistachkin 2014-05-30 18:14:32.206 |
Context
2014-06-02
| ||
18:31 | Avoid scanning both fileformat.html and fileformat2.html for requirements since one is a copy of the other. (check-in: 51c582171c user: drh tags: trunk) | |
2014-05-30
| ||
18:14 | Document the SQLITE_WIN32_HEAP_CREATE and SQLITE_WIN32_MALLOC_VALIDATE compile-time options. (check-in: 9816bbf88c user: mistachkin tags: trunk) | |
18:01 | Add a section describing the Win32 native memory allocator. (check-in: ef8f1ed845 user: mistachkin tags: trunk) | |
Changes
Changes to pages/compile.in.
︙ | ︙ | |||
1228 1229 1230 1231 1232 1233 1234 1235 1236 | to be used as the default memory allocator within SQLite. The instrumented memory allocator checks for misuse of dynamically allocated memory. Examples of misuse include using memory after it is freed, writing off the ends of a memory allocation, freeing memory not previously obtained from the memory allocator, or failing to initialize newly allocated memory. } </tcl> | > > > > > > > > > > > > > > > > | 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 | to be used as the default memory allocator within SQLite. The instrumented memory allocator checks for misuse of dynamically allocated memory. Examples of misuse include using memory after it is freed, writing off the ends of a memory allocation, freeing memory not previously obtained from the memory allocator, or failing to initialize newly allocated memory. } </tcl> <a name="win32options"></a> <h2>1.8 Windows-Specific Options</h2> <tcl> COMPILE_OPTION {SQLITE_WIN32_HEAP_CREATE} { This option forces the Win32 native memory allocator, when enabled, to create a private heap to hold all memory allocations. } COMPILE_OPTION {SQLITE_WIN32_MALLOC_VALIDATE} { This option forces the Win32 native memory allocator, when enabled, to make strategic calls into the HeapValidate() function if assert() is also enabled. } </tcl> |