Thread::Semaphore



Thread::Semaphore

NAME
VERSION
SYNOPSIS
DESCRIPTION
METHODS
NOTES
SEE ALSO
MAINTAINER
LICENSE

NAME

Thread::Semaphore − Thread−safe semaphores

VERSION

This document describes Thread::Semaphore version 2.12

SYNOPSIS

    use Thread::Semaphore;
    my $s = Thread::Semaphore−>new();
    $s−>down();   # Also known as the semaphore P operation.
    # The guarded section is here
    $s−>up();     # Also known as the semaphore V operation.
    # Decrement the semaphore only if it would immediately succeed.
    if ($s−>down_nb()) {
        # The guarded section is here
        $s−>up();
    }
    # Forcefully decrement the semaphore even if its count goes below 0.
    $s−>down_force();
    # The default value for semaphore operations is 1
    my $s = Thread::Semaphore−>new($initial_value);
    $s−>down($down_value);
    $s−>up($up_value);
    if ($s−>down_nb($down_value)) {
        ...
        $s−>up($up_value);
    }
    $s−>down_force($down_value);

DESCRIPTION

Semaphores provide a mechanism to regulate access to resources. Unlike locks, semaphores aren’t tied to particular scalars, and so may be used to control access to anything you care to use them for.

Semaphores don’t limit their values to zero and one, so they can be used to control access to some resource that there may be more than one of (e.g., filehandles). Increment and decrement amounts aren’t fixed at one either, so threads can reserve or return multiple resources at once.

METHODS

−>new()

−>new( NUMBER )

"new" creates a new semaphore, and initializes its count to the specified number (which must be an integer). If no number is specified, the semaphore’s count defaults to 1.

−>down()
−>down( NUMBER )

The "down" method decreases the semaphore’s count by the specified number (which must be an integer >= 1), or by one if no number is specified.

If the semaphore’s count would drop below zero, this method will block until such time as the semaphore’s count is greater than or equal to the amount you’re "down"ing the semaphore’s count by.

This is the semaphore "P operation" (the name derives from the Dutch word "pak", which means "capture" -- the semaphore operations were named by the late Dijkstra, who was Dutch).

−>down_nb()
−>down_nb( NUMBER )

The "down_nb" method attempts to decrease the semaphore’s count by the specified number (which must be an integer >= 1), or by one if no number is specified.

If the semaphore’s count would drop below zero, this method will return false, and the semaphore’s count remains unchanged. Otherwise, the semaphore’s count is decremented and this method returns true.

−>down_force()
−>down_force( NUMBER )

The "down_force" method decreases the semaphore’s count by the specified number (which must be an integer >= 1), or by one if no number is specified. This method does not block, and may cause the semaphore’s count to drop below zero.

−>up()

−>up( NUMBER )

The "up" method increases the semaphore’s count by the number specified (which must be an integer >= 1), or by one if no number is specified.

This will unblock any thread that is blocked trying to "down" the semaphore if the "up" raises the semaphore’s count above the amount that the "down" is trying to decrement it by. For example, if three threads are blocked trying to "down" a semaphore by one, and another thread "up"s the semaphore by two, then two of the blocked threads (which two is indeterminate) will become unblocked.

This is the semaphore "V operation" (the name derives from the Dutch word "vrij", which means "release").

NOTES

Semaphores created by Thread::Semaphore can be used in both threaded and non-threaded applications. This allows you to write modules and packages that potentially make use of semaphores, and that will function in either environment.

SEE ALSO

Thread::Semaphore Discussion Forum on CPAN: http://www.cpanforum.com/dist/Thread−Semaphore <http://www.cpanforum.com/dist/Thread-Semaphore>

threads, threads::shared

MAINTAINER

Jerry D. Hedden, <jdhedden  AT  cpan  DOT  org>

LICENSE

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.






Opportunity


Personal Opportunity - Free software gives you access to billions of dollars of software at no cost. Use this software for your business, personal use or to develop a profitable skill. Access to source code provides access to a level of capabilities/information that companies protect though copyrights. Open source is a core component of the Internet and it is available to you. Leverage the billions of dollars in resources and capabilities to build a career, establish a business or change the world. The potential is endless for those who understand the opportunity.

Business Opportunity - Goldman Sachs, IBM and countless large corporations are leveraging open source to reduce costs, develop products and increase their bottom lines. Learn what these companies know about open source and how open source can give you the advantage.





Free Software


Free Software provides computer programs and capabilities at no cost but more importantly, it provides the freedom to run, edit, contribute to, and share the software. The importance of free software is a matter of access, not price. Software at no cost is a benefit but ownership rights to the software and source code is far more significant.


Free Office Software - The Libre Office suite provides top desktop productivity tools for free. This includes, a word processor, spreadsheet, presentation engine, drawing and flowcharting, database and math applications. Libre Office is available for Linux or Windows.





Free Books


The Free Books Library is a collection of thousands of the most popular public domain books in an online readable format. The collection includes great classical literature and more recent works where the U.S. copyright has expired. These books are yours to read and use without restrictions.


Source Code - Want to change a program or know how it works? Open Source provides the source code for its programs so that anyone can use, modify or learn how to write those programs themselves. Visit the GNU source code repositories to download the source.





Education


Study at Harvard, Stanford or MIT - Open edX provides free online courses from Harvard, MIT, Columbia, UC Berkeley and other top Universities. Hundreds of courses for almost all major subjects and course levels. Open edx also offers some paid courses and selected certifications.


Linux Manual Pages - A man or manual page is a form of software documentation found on Linux/Unix operating systems. Topics covered include computer programs (including library and system calls), formal standards and conventions, and even abstract concepts.