Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Move the ctime.c source module near the beginning of the list of files inserted into the amalgamation so that #defines that are overridden in other modules will not effect the values returned by sqlite3_compiletime_used(). |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
bb591802fff5a99ae504509e812bb34e |
User & Date: | drh 2010-03-10 23:13:54.000 |
References
2010-03-26
| ||
21:53 | Pull in other fixes from the trunk: check-ins [bea9258643], [f186b6a619], and [bb591802ff]. (check-in: b1f342a664 user: drh tags: branch-3.6.23) | |
Context
2010-03-12
| ||
16:32 | Add assert()s to mem2.c (activated by SQLITE_MEMDEBUG) which verify that memory alloctions that might have come from lookaside are always freed using a lookaside-aware free routine. (check-in: c2af2164cf user: drh tags: trunk) | |
2010-03-10
| ||
23:13 | Move the ctime.c source module near the beginning of the list of files inserted into the amalgamation so that #defines that are overridden in other modules will not effect the values returned by sqlite3_compiletime_used(). (check-in: bb591802ff user: drh tags: trunk) | |
21:42 | Add the SQLITE_DBSTATUS_CACHE_SIZE verb for sqlite3_db_status(). The highwater mark does not yet work on this verb. (check-in: 418c6d8113 user: drh tags: trunk) | |
Changes
Changes to tool/mksqlite3c.tcl.
︙ | ︙ | |||
207 208 209 210 211 212 213 214 215 216 217 218 219 220 | # used subroutines first in order to help the compiler find # inlining opportunities. # foreach file { sqliteInt.h global.c status.c date.c os.c fault.c mem0.c mem1.c | > | 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 | # used subroutines first in order to help the compiler find # inlining opportunities. # foreach file { sqliteInt.h global.c ctime.c status.c date.c os.c fault.c mem0.c mem1.c |
︙ | ︙ | |||
262 263 264 265 266 267 268 | expr.c alter.c analyze.c attach.c auth.c build.c callback.c | < | 263 264 265 266 267 268 269 270 271 272 273 274 275 276 | expr.c alter.c analyze.c attach.c auth.c build.c callback.c delete.c func.c fkey.c insert.c legacy.c loadext.c pragma.c |
︙ | ︙ |