Threads

Support for threads needs to be built into the Perl executable.

The pragma threads implements thread objects and the necessary operations for threads. Some of the most relevant operations are:

async block

Starts a thread to execute the block. Returns the thread object.

threads->create(sub [ , args ])

Creates a new thread that starts executing in the referenced subroutine. The args are passed to this subroutine. Returns the thread object.

threads->list

Returns a list of joinable threads.

threads->self

Returns an object representing the current thread.

threads->tid

Returns the thread ID of the current thread.

threads->yield

The current thread gives up the CPU in favor of other threads.

thread objects support the several methods, including:

detach

Detaches a thread so it runs independently.

equal(thread)

Returns true if the thread and thread are the same thread. You can also compare thread objects directly, using the == operator.

join

Waits for the thread to complete. The value returned is the return value from the thread’s subroutine.

tid

Returns the thread ID of a thread.

The pragma threads::shared implements operations that enable variable sharing across threads:

cond_broadcast variable

Unblocks all threads waiting for this variable. variable must be locked.

cond_signal variable

Unblocks one thread that is waiting for this variable. variable must be locked.

cond_timed_wait [ condvar , ] variable, time

Like cond_wait, but times out at the indicated time.

cond_wait [ condvar , ] variable

Waits for another thread to signal (cond_signal or cond_broadcast) the variable. variable must be locked and will be temporarily unlocked while waiting. With condvar, unlocks variable while waiting for a signal for condvar.

is_shared variable

Checks if the specified variable is shared.

lock variable

Locks a shared variable against concurrent access. The lock is automatically released when it goes out of scope.

share variable

Marks the variable as shared.

shared_clone ref

Takes a reference, and returns a shared version of its argument.

perlthrtut, threads, threads::shared.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset