Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Unified Diff: third_party/sqlite/src/src/test_onefile.c

Issue 6990047: Import SQLite 3.7.6.3. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/sqlite/src/src/test_mutex.c ('k') | third_party/sqlite/src/src/test_osinst.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/src/test_onefile.c
diff --git a/third_party/sqlite/src/src/test_onefile.c b/third_party/sqlite/src/src/test_onefile.c
index 9d176bec5c917fe0834adbf7ac7ec43dd360f7c2..cd7db008cff4f9288b32df03c9e69a2ecef5dc0d 100644
--- a/third_party/sqlite/src/src/test_onefile.c
+++ b/third_party/sqlite/src/src/test_onefile.c
@@ -10,8 +10,6 @@
**
*************************************************************************
**
-** $Id: test_onefile.c,v 1.12 2009/04/07 11:21:29 danielk1977 Exp $
-**
** OVERVIEW:
**
** This file contains some example code demonstrating how the SQLite
@@ -200,7 +198,8 @@ static fs_vfs_t fs_vfs = {
fsDlClose, /* xDlClose */
fsRandomness, /* xRandomness */
fsSleep, /* xSleep */
- fsCurrentTime /* xCurrentTime */
+ fsCurrentTime, /* xCurrentTime */
+ 0 /* xCurrentTimeInt64 */
},
0, /* pFileList */
0 /* pParent */
@@ -219,7 +218,11 @@ static sqlite3_io_methods fs_io_methods = {
fsCheckReservedLock, /* xCheckReservedLock */
fsFileControl, /* xFileControl */
fsSectorSize, /* xSectorSize */
- fsDeviceCharacteristics /* xDeviceCharacteristics */
+ fsDeviceCharacteristics, /* xDeviceCharacteristics */
+ 0, /* xShmMap */
+ 0, /* xShmLock */
+ 0, /* xShmBarrier */
+ 0 /* xShmUnmap */
};
@@ -236,7 +239,11 @@ static sqlite3_io_methods tmp_io_methods = {
tmpCheckReservedLock, /* xCheckReservedLock */
tmpFileControl, /* xFileControl */
tmpSectorSize, /* xSectorSize */
- tmpDeviceCharacteristics /* xDeviceCharacteristics */
+ tmpDeviceCharacteristics, /* xDeviceCharacteristics */
+ 0, /* xShmMap */
+ 0, /* xShmLock */
+ 0, /* xShmBarrier */
+ 0 /* xShmUnmap */
};
/* Useful macros used in several places */
« no previous file with comments | « third_party/sqlite/src/src/test_mutex.c ('k') | third_party/sqlite/src/src/test_osinst.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698