From 754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 7 Apr 2024 13:41:34 -0500 Subject: new repository --- devdocs/elisp/mutex-type.html | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 devdocs/elisp/mutex-type.html (limited to 'devdocs/elisp/mutex-type.html') diff --git a/devdocs/elisp/mutex-type.html b/devdocs/elisp/mutex-type.html new file mode 100644 index 00000000..e939a6e0 --- /dev/null +++ b/devdocs/elisp/mutex-type.html @@ -0,0 +1,11 @@ +

Mutex Type

A mutex is an exclusive lock that threads can own and disown, in order to synchronize between them. See Mutexes.

Mutex objects have no read syntax. They print in hash notation, giving the name of the mutex (if it has been given a name) or its address in core:

(make-mutex "my-mutex")
+    ⇒ #<mutex my-mutex>
+(make-mutex)
+    ⇒ #<mutex 01c7e4e0>
+
+
+

+ Copyright © 1990-1996, 1998-2022 Free Software Foundation, Inc.
Licensed under the GNU GPL license.
+ https://www.gnu.org/software/emacs/manual/html_node/elisp/Mutex-Type.html +

+
-- cgit v1.2.3