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

Side by Side Diff: third_party/sqlite/amalgamation/sqlite3.h

Issue 9845034: Revert [SQLite] Hack to touch page cache to debug slow connection close. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sql/connection.cc ('k') | third_party/sqlite/amalgamation/sqlite3.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 ** 2001 September 15 2 ** 2001 September 15
3 ** 3 **
4 ** The author disclaims copyright to this source code. In place of 4 ** The author disclaims copyright to this source code. In place of
5 ** a legal notice, here is a blessing: 5 ** a legal notice, here is a blessing:
6 ** 6 **
7 ** May you do good and not evil. 7 ** May you do good and not evil.
8 ** May you find forgiveness for yourself and forgive others. 8 ** May you find forgiveness for yourself and forgive others.
9 ** May you share freely, never taking more than you give. 9 ** May you share freely, never taking more than you give.
10 ** 10 **
(...skipping 6459 matching lines...) Expand 10 before | Expand all | Expand 10 after
6470 void (*xDelUser)(void *); /* Called by SQLite to clean up pUser */ 6470 void (*xDelUser)(void *); /* Called by SQLite to clean up pUser */
6471 }; 6471 };
6472 6472
6473 6473
6474 #ifdef __cplusplus 6474 #ifdef __cplusplus
6475 } /* end of the 'extern "C"' block */ 6475 } /* end of the 'extern "C"' block */
6476 #endif 6476 #endif
6477 6477
6478 #endif /* ifndef _SQLITE3RTREE_H_ */ 6478 #endif /* ifndef _SQLITE3RTREE_H_ */
6479 6479
6480 #ifdef __cplusplus
6481 extern "C" {
6482 #endif
6483
6484 /* Fault in page cache for db. See http://crbug.com/95527 .
6485 ** *pnTouched will accumulate the number of bytes represented by the
6486 ** touched pages. */
6487 int sqlite3_95527(sqlite3 *db, unsigned int *pnTouched);
6488
6489 /* Let our code know that it's safe to call the function. */
6490 #define HAS_SQLITE3_95527
6491
6492 #ifdef __cplusplus
6493 } /* end of the 'extern "C"' block */
6494 #endif
OLDNEW
« no previous file with comments | « sql/connection.cc ('k') | third_party/sqlite/amalgamation/sqlite3.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698