Thread_get_finished - hpgDesigns/hpgdesigns-dev.io GitHub Wiki

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