diff --git a/reference/pthreads/cond.xml b/reference/pthreads/cond.xml index 7b076e3b63..403706e513 100644 --- a/reference/pthreads/cond.xml +++ b/reference/pthreads/cond.xml @@ -3,7 +3,7 @@ - Condition Variable + The Cond class Cond diff --git a/reference/pthreads/mutex.xml b/reference/pthreads/mutex.xml index 9f9bd35955..5bfae39c99 100644 --- a/reference/pthreads/mutex.xml +++ b/reference/pthreads/mutex.xml @@ -3,7 +3,7 @@ - Mutual Exclusion + The Mutex class Mutex diff --git a/reference/pthreads/pool.xml b/reference/pthreads/pool.xml index b08841006d..48a2bc7f67 100644 --- a/reference/pthreads/pool.xml +++ b/reference/pthreads/pool.xml @@ -3,7 +3,7 @@ - Pooling + The Pool class Pool diff --git a/reference/pthreads/thread.xml b/reference/pthreads/thread.xml index b218f2aee8..987f8c2e9e 100644 --- a/reference/pthreads/thread.xml +++ b/reference/pthreads/thread.xml @@ -3,7 +3,7 @@ - Threads + The Thread class Thread diff --git a/reference/pthreads/threaded.xml b/reference/pthreads/threaded.xml index d3d78ac827..9e7d38ec2e 100644 --- a/reference/pthreads/threaded.xml +++ b/reference/pthreads/threaded.xml @@ -3,7 +3,7 @@ - Thread Safe Objects + The Threaded class Threaded diff --git a/reference/pthreads/threaded/chunk.xml b/reference/pthreads/threaded/chunk.xml index fafb484018..135cbee136 100644 --- a/reference/pthreads/threaded/chunk.xml +++ b/reference/pthreads/threaded/chunk.xml @@ -15,7 +15,7 @@ booleanpreserve - Fetches a chunk of the objects properties table of the given size, optionally preserving keys + Fetches a chunk of the objects property table of the given size, optionally preserving keys diff --git a/reference/pthreads/worker.xml b/reference/pthreads/worker.xml index f52ac8ea06..5d92fce149 100644 --- a/reference/pthreads/worker.xml +++ b/reference/pthreads/worker.xml @@ -3,7 +3,7 @@ - Workers + The Worker class Worker @@ -16,11 +16,19 @@ When a Worker is started, the run method will be executed, but the Thread will not leave until one of the following conditions are met: - - - the Worker goes out of scope (no more references remain) - - the programmer calls shutdown - - the script dies - + + + + the Worker goes out of scope (no more references remain) + + + the programmer calls shutdown + + + the script dies + + + This means the programmer can reuse the context throughout execution; placing objects on the stack of the Worker will cause the Worker to execute the stacked objects run method.