SQLite C 接口
互斥句柄
typedef struct sqlite3_mutex sqlite3_mutex;
SQLite 中的互斥模块将sqlite3_mutex定义为互斥对象的抽象类型。SQLite 核心从不查看sqlite3_mutex的内部表示。它只处理指向sqlite3_mutex对象的指针。
互斥量是使用sqlite3_mutex_alloc()创建的。
typedef struct sqlite3_mutex sqlite3_mutex;
SQLite 中的互斥模块将sqlite3_mutex定义为互斥对象的抽象类型。SQLite 核心从不查看sqlite3_mutex的内部表示。它只处理指向sqlite3_mutex对象的指针。
互斥量是使用sqlite3_mutex_alloc()创建的。