summaryrefslogtreecommitdiffstats
path: root/doc/classes/Semaphore.xml
diff options
context:
space:
mode:
authorRadiant <69520693+RadiantUwU@users.noreply.github.com>2024-08-27 06:12:10 +0300
committerRadiant <69520693+RadiantUwU@users.noreply.github.com>2024-08-27 18:18:01 +0300
commit6311ee5bd5ef6342bdccbbcbc81f0be5d7dca557 (patch)
treebf67956d04a92d70059060f31380fdd59a899c9c /doc/classes/Semaphore.xml
parent8e80c1070420cf7f9fd9ffcefe9a12f05cfcbb64 (diff)
downloadredot-engine-6311ee5bd5ef6342bdccbbcbc81f0be5d7dca557.tar.gz
Add optional count argument to Sempahore::post
Co-authored-by: RandomShaper <RandomShaper@users.noreply.github.com> Co-authored-by: A Thousand Ships (she/her) <96648715+AThousandShips@users.noreply.github.com> Co-authored-by: Mickeon <Mickeon@users.noreply.github.com>
Diffstat (limited to 'doc/classes/Semaphore.xml')
-rw-r--r--doc/classes/Semaphore.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/classes/Semaphore.xml b/doc/classes/Semaphore.xml
index d0db24dfb7..3ecb5c23af 100644
--- a/doc/classes/Semaphore.xml
+++ b/doc/classes/Semaphore.xml
@@ -17,8 +17,9 @@
<methods>
<method name="post">
<return type="void" />
+ <param index="0" name="count" type="int" default="1" />
<description>
- Lowers the [Semaphore], allowing one more thread in.
+ Lowers the [Semaphore], allowing one thread in, or more if [param count] is specified.
</description>
</method>
<method name="try_wait">