typedef struct sqlite3_mutex sqlite3_mutex;
SQLite 中的互斥锁模块将 sqlite3_mutex 定义为互斥锁对象的抽象类型。SQLite 核心从不查看 sqlite3_mutex 的内部表示。它只处理指向 sqlite3_mutex 对象的指针。
互斥锁使用 sqlite3_mutex_alloc() 创建。
另请参阅 对象、常量 和 函数 列表。