diff options
author | shane <shane@noemail.net> | 2009-08-17 15:31:23 +0000 |
---|---|---|
committer | shane <shane@noemail.net> | 2009-08-17 15:31:23 +0000 |
commit | 7c7c311da54480a855c4d9ae752e351897c1a521 (patch) | |
tree | 9b6582842951ba41eed543da9ca1184272b62d78 /src/mutex_unix.c | |
parent | e1ab2193092623f4f826f9ac73aa05ac494c8982 (diff) | |
download | sqlite-7c7c311da54480a855c4d9ae752e351897c1a521.tar.gz sqlite-7c7c311da54480a855c4d9ae752e351897c1a521.zip |
More documentation and comment updates for sqlite3_initialize/shutdown interface changes to handle failures.
FossilOrigin-Name: 32509bc7339cd6a46cea4c243e3418546860cb2d
Diffstat (limited to 'src/mutex_unix.c')
-rw-r--r-- | src/mutex_unix.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mutex_unix.c b/src/mutex_unix.c index 36b0682f0..dc57988e2 100644 --- a/src/mutex_unix.c +++ b/src/mutex_unix.c @@ -91,6 +91,7 @@ static int pthreadMutexEnd(void){ return SQLITE_OK; } ** <li> SQLITE_MUTEX_STATIC_MEM2 ** <li> SQLITE_MUTEX_STATIC_PRNG ** <li> SQLITE_MUTEX_STATIC_LRU +** <li> SQLITE_MUTEX_STATIC_LRU2 ** </ul> ** ** The first two constants cause sqlite3_mutex_alloc() to create @@ -104,7 +105,7 @@ static int pthreadMutexEnd(void){ return SQLITE_OK; } ** might return such a mutex in response to SQLITE_MUTEX_FAST. ** ** The other allowed parameters to sqlite3_mutex_alloc() each return -** a pointer to a static preexisting mutex. Three static mutexes are +** a pointer to a static preexisting mutex. Six static mutexes are ** used by the current version of SQLite. Future versions of SQLite ** may add additional static mutexes. Static mutexes are for internal ** use by SQLite only. Applications that use SQLite mutexes should |