Small, Fast, Reliable.
Choose any three.

SQLite C Interface

Mutex Types

#define SQLITE_MUTEX_FAST             0
#define SQLITE_MUTEX_RECURSIVE        1
#define SQLITE_MUTEX_STATIC_MASTER    2
#define SQLITE_MUTEX_STATIC_MEM       3  /* sqlite3_malloc() */
#define SQLITE_MUTEX_STATIC_MEM2      4  /* sqlite3_release_memory() */
#define SQLITE_MUTEX_STATIC_PRNG      5  /* sqlite3_random() */
#define SQLITE_MUTEX_STATIC_LRU       6  /* lru page list */

The sqlite3_mutex_alloc() interface takes a single argument which is one of these integer constants.

See also lists of Objects, Constants, and Functions.


This page last modified 2007/11/22 00:41:31 UTC