在线文档教程
Sqlite
C界面 | C Interface

Mutex Handle

互斥量句柄

typedef struct sqlite3_mutex sqlite3_mutex;

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

互斥体是使用 sqlite3_mutex_alloc()创建的。