From 63847496f14c813a5d80efd5b7de0f1294ffe1e3 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 13 Apr 2024 16:07:11 +0200 Subject: Adding upstream version 3.45.1. Signed-off-by: Daniel Baumann --- www/c3ref/mutex.html | 137 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 137 insertions(+) create mode 100644 www/c3ref/mutex.html (limited to 'www/c3ref/mutex.html') diff --git a/www/c3ref/mutex.html b/www/c3ref/mutex.html new file mode 100644 index 0000000..32431f6 --- /dev/null +++ b/www/c3ref/mutex.html @@ -0,0 +1,137 @@ + + + + + +Mutex Handle + + + +
+ + + +
+
+Small. Fast. Reliable.
Choose any three. +
+ + +
+
+ + + +
+
+
+ + +
+

SQLite C Interface

+

Mutex Handle

+
+
+typedef struct sqlite3_mutex sqlite3_mutex;
+
+

+The mutex module within SQLite defines sqlite3_mutex to be an +abstract type for a mutex object. The SQLite core never looks +at the internal representation of an sqlite3_mutex. It only +deals with pointers to the sqlite3_mutex object.

+ +

Mutexes are created using sqlite3_mutex_alloc(). +

See also lists of + Objects, + Constants, and + Functions.

+ -- cgit v1.2.3