Skip to content

Thread_get_finished

hugh greene edited this page Jun 20, 2022 · 1 revision

Description

Checks if the given thread has finished or not.

Parameters

Parameter Data Type Description
thread integer index of the thread

Return Values

boolean: Returns whether or not the thread has finished.

Example Call

if (thread_finished(asynchthread) {
  // thread has finished
} else {
  // thread has not finished
}

NOTOC

Clone this wiki locally