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