From 05b3bec70d38c85a83ddaf4a3c97b7ea9c0b392a Mon Sep 17 00:00:00 2001 From: Roger Smith Date: Sun, 10 Sep 2017 18:31:41 +1200 Subject: Rewrite the methods section of the Thread class --- doc/base/classes.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/base') diff --git a/doc/base/classes.xml b/doc/base/classes.xml index 9f14f6cecf..dc4f4918b5 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -52272,14 +52272,14 @@ - Return the id of the thread, uniquely identifying it among all threads. + Returns the current [Thread]\ s id, uniquely identifying it among all threads. - Whether this thread is currently active, an active Thread cannot start work on a new method but can be joined with [method wait_to_finish]. + Returns true if this [Thread] is currently active. An active [Thread] cannot start work on a new method but can be joined with [method wait_to_finish]. @@ -52294,7 +52294,7 @@ - Start a new [Thread], it will run "method" on object "instance" using "userdata" as an argument and running with "priority", one of PRIORITY_* enum. + Starts a new [Thread] that runs "method" on object "instance" with "userdata" passed as an argument. The "priority" of the [Thread] can be changed by passing a PRIORITY_* enum. Returns OK on success, or ERR_CANT_CREATE on failure. -- cgit v1.2.3