Small. Fast. Reliable.
Choose any three.

SQLite C接口

互斥手柄

typedef struct sqlite3_mutex sqlite3_mutex;

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

使用sqlite3_mutex_alloc()创建互斥量。

另请参见 对象常量函数的列表