Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix build errors in test_osinst (CVS 4998) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f047399799798e693ef75c472144f30a |
User & Date: | mlcreech 2008-04-13 23:13:40.000 |
Context
2008-04-14
| ||
01:00 | Get the SQLITE_SECURE_DELETE compile-time option working again. Ticket #3050. (CVS 4999) (check-in: 40ba51fd4c user: drh tags: trunk) | |
2008-04-13
| ||
23:13 | Fix build errors in test_osinst (CVS 4998) (check-in: f047399799 user: mlcreech tags: trunk) | |
2008-04-12
| ||
16:03 | Modify speedtest8.c so that it can use the logging from test_osinst.c when HAVE_OSINST is defined. (CVS 4997) (check-in: 7622d74ad6 user: danielk1977 tags: trunk) | |
Changes
Changes to Makefile.in.
︙ | ︙ | |||
337 338 339 340 341 342 343 344 345 346 347 348 349 350 | $(TOP)/src/test_config.c \ $(TOP)/src/test_devsym.c \ $(TOP)/src/test_func.c \ $(TOP)/src/test_hexio.c \ $(TOP)/src/test_malloc.c \ $(TOP)/src/test_md5.c \ $(TOP)/src/test_onefile.c \ $(TOP)/src/test_schema.c \ $(TOP)/src/test_server.c \ $(TOP)/src/test_tclvar.c \ $(TOP)/src/test_thread.c # Header files used by all library source files. # | > | 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 | $(TOP)/src/test_config.c \ $(TOP)/src/test_devsym.c \ $(TOP)/src/test_func.c \ $(TOP)/src/test_hexio.c \ $(TOP)/src/test_malloc.c \ $(TOP)/src/test_md5.c \ $(TOP)/src/test_onefile.c \ $(TOP)/src/test_osinst.c \ $(TOP)/src/test_schema.c \ $(TOP)/src/test_server.c \ $(TOP)/src/test_tclvar.c \ $(TOP)/src/test_thread.c # Header files used by all library source files. # |
︙ | ︙ |
Changes to src/test_osinst.c.
︙ | ︙ | |||
242 243 244 245 246 247 248 | } \ return rc; \ } #define OS_TIME_VFS(eEvent, Z, flags, A, B, Call) { \ InstVfs *pInstVfs = (InstVfs *)pVfs; \ int rc; \ | | | | 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 | } \ return rc; \ } #define OS_TIME_VFS(eEvent, Z, flags, A, B, Call) { \ InstVfs *pInstVfs = (InstVfs *)pVfs; \ int rc; \ sqlite3_int64 t = osinst_hwtime(); \ rc = Call; \ t = osinst_hwtime() - t; \ pInstVfs->aTime[eEvent] += t; \ pInstVfs->aCount[eEvent] += 1; \ if( pInstVfs->xCall ){ \ pInstVfs->xCall(pInstVfs->pClient, eEvent, t, Z, flags, A, B); \ } \ return rc; \ } |
︙ | ︙ |