:github_url: hide .. Generated automatically by doc/tools/makerst.py in Godot's source tree. .. DO NOT EDIT THIS FILE, but the Semaphore.xml source instead. .. The source is found in doc/classes or modules//doc_classes. .. _class_Semaphore: Semaphore ========= **Inherits:** :ref:`Reference` **<** :ref:`Object` **Category:** Core Brief Description ----------------- A synchronization Semaphore. Methods ------- +---------------------------------------+------------------------------------------------------+ | :ref:`Error` | :ref:`post` **(** **)** | +---------------------------------------+------------------------------------------------------+ | :ref:`Error` | :ref:`wait` **(** **)** | +---------------------------------------+------------------------------------------------------+ Description ----------- A synchronization Semaphore. Element used to synchronize multiple :ref:`Thread`\ s. Initialized to zero on creation. Be careful to avoid deadlocks. For a binary version, see :ref:`Mutex`. Method Descriptions ------------------- .. _class_Semaphore_method_post: - :ref:`Error` **post** **(** **)** Lowers the ``Semaphore``, allowing one more thread in. Returns :ref:`@GlobalScope.OK` on success, :ref:`@GlobalScope.ERR_BUSY` otherwise. ---- .. _class_Semaphore_method_wait: - :ref:`Error` **wait** **(** **)** Tries to wait for the ``Semaphore``, if its value is zero, blocks until non-zero. Returns :ref:`@GlobalScope.OK` on success, :ref:`@GlobalScope.ERR_BUSY` otherwise.