summaryrefslogtreecommitdiffstats
path: root/src/civetweb/docs/api/mg_unlock_context.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/civetweb/docs/api/mg_unlock_context.md')
-rw-r--r--src/civetweb/docs/api/mg_unlock_context.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/civetweb/docs/api/mg_unlock_context.md b/src/civetweb/docs/api/mg_unlock_context.md
new file mode 100644
index 00000000..a630acd7
--- /dev/null
+++ b/src/civetweb/docs/api/mg_unlock_context.md
@@ -0,0 +1,23 @@
+# Civetweb API Reference
+
+### `mg_unlock_context( ctx );`
+
+### Parameters
+
+| Parameter | Type | Description |
+| :--- | :--- | :--- |
+|**`ctx`**|`struct mg_context *`|The context to remove the lock from|
+
+### Return Value
+
+*none*
+
+### Description
+
+The function `mg_unlock_contect()` removes a lock put previously on a context with a call to [`mg_lock_context()`](mg_lock_context.md). Locking a context may be necessary when accessing shared resources.
+
+### See Also
+
+* [`mg_lock_connection();`](mg_lock_connection.md)
+* [`mg_lock_context();`](mg_lock_context.md)
+* [`mg_unlock_connection();`](mg_unlock_connection.md)