Merge pull request #44732 from Calinou/os-add-get-thread-caller-id

Add an `OS.get_thread_caller_id()` method
This commit is contained in:
Rémi Verschelde
2021-01-26 15:54:25 +01:00
committed by GitHub
3 changed files with 14 additions and 0 deletions

View File

@ -136,6 +136,14 @@
Returns the keycode of the given string (e.g. "Escape").
</description>
</method>
<method name="get_thread_caller_id" qualifiers="const">
<return type="int">
</return>
<description>
Returns the ID of the current thread. This can be used in logs to ease debugging of multi-threaded applications.
[b]Note:[/b] Thread IDs are not deterministic and may be reused across application restarts.
</description>
</method>
<method name="get_cmdline_args">
<return type="PackedStringArray">
</return>