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

Side by Side Diff: third_party/sqlite/sqlite-src-3100200/ext/async/README.txt

Issue 1610543003: [sql] Import reference version of SQLite 3.10.2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
OLDNEW
1 NOTE (2012-11-29): 1 NOTE (2012-11-29):
2 2
3 The functionality implemented by this extension has been superseded 3 The functionality implemented by this extension has been superseded
4 by WAL-mode. This module is no longer supported or maintained. The 4 by WAL-mode. This module is no longer supported or maintained. The
5 code is retained for historical reference only. 5 code is retained for historical reference only.
6 6
7 ------------------------------------------------------------------------------ 7 ------------------------------------------------------------------------------
8 8
9 Normally, when SQLite writes to a database file, it waits until the write 9 Normally, when SQLite writes to a database file, it waits until the write
10 operation is finished before returning control to the calling application. 10 operation is finished before returning control to the calling application.
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 new versions of each of the following: 161 new versions of each of the following:
162 162
163 static void async_mutex_enter(int eMutex); 163 static void async_mutex_enter(int eMutex);
164 static void async_mutex_leave(int eMutex); 164 static void async_mutex_leave(int eMutex);
165 static void async_cond_wait(int eCond, int eMutex); 165 static void async_cond_wait(int eCond, int eMutex);
166 static void async_cond_signal(int eCond); 166 static void async_cond_signal(int eCond);
167 static void async_sched_yield(void); 167 static void async_sched_yield(void);
168 168
169 The functionality required of each of the above functions is described 169 The functionality required of each of the above functions is described
170 in comments in sqlite3async.c. 170 in comments in sqlite3async.c.
OLDNEW
« no previous file with comments | « third_party/sqlite/sqlite-src-3100200/ext/README.txt ('k') | third_party/sqlite/sqlite-src-3100200/ext/async/sqlite3async.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698