小巧。快速。可靠。
三者选其二。

SQLite C 接口

互斥锁句柄

typedef struct sqlite3_mutex sqlite3_mutex;

SQLite 中的互斥锁模块将 sqlite3_mutex 定义为互斥锁对象的抽象类型。SQLite 核心从不查看 sqlite3_mutex 的内部表示。它只处理指向 sqlite3_mutex 对象的指针。

互斥锁使用 sqlite3_mutex_alloc() 创建。

另请参阅 对象常量函数 列表。