# 2.5.10 互斥锁类型

互斥锁是线程间同步用的对象。详情查阅互斥锁章节。

互斥锁对象没有读取语法。它们的打印表示采用哈希记法，其中包含互斥锁的名称（如果有的话）以及它们在核心中的地址：

```
(make-mutex "my-mitex")
    => #<mutex my-mutex>
(make-mutex)
    => #<mutex 01c7e4e0>
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://emacs-lisp.ivory.cafe/lisp-shu-ju-lei-xing/2.5-bian-ji-lei-xing/2.5.10-hu-chi-suo-lei-xing.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
