-
Notifications
You must be signed in to change notification settings - Fork 0
Thread_exists
hpgDesigns edited this page Aug 8, 2021
·
1 revision
Checks if the given thread exists and returns the result.
| Parameter | Data Type | Description |
|---|---|---|
| thread | integer | index of the thread |
boolean: Returns whether or not the thread exists.
// demonstrates checking if a thread exists or not
if (thread_exists(asynchthread) {
// thread does exist
} else {
// thread does not exist
}
NOTOC
This is number 1