POSIX::SchedYield - execute POSIX.1b system call sched_yield(2)


POSIX-SchedYield documentation  | view source Contained in the POSIX-SchedYield distribution.

Index


NAME

Top

POSIX::SchedYield - execute POSIX.1b system call sched_yield(2)

VERSION

Top

This documentation refers to POSIX::SchedYield 0.0.2.

SYNOPSIS

Top

use POSIX::SchedYield qw(sched_yield);

sched_yield();

DESCRIPTION

Top

This module provides one function, sched_yield(), which executes the POSIX.1b sched_yield system call. It relinquishes the processor without blocking, allowing other processes to run. This does not change the process priority (see the nice (nice in POSIX) function from the POSIX (POSIX) module for that), so if your process is currently the one with the highest priority it will continue to run without interruption. See the sched_yield(2) man page and your operating systems scheduling documentation for more details.

On most systems, the threads module method yield() will also use the sched_yield system call, so you can use that instead, if you prefer. POSIX::SchedYield is more explicit, will work with older and unthreaded versions of Perl, and will always call sched_yield, whereas the threads implementation may change at some point.

INTERFACE

Top

Subroutines

sched_yield()

Executes the sched_yield(2) system call. No parameters can be passed, the function returns 1 on sucess, undef on failure.

EXAMPLES / USAGE

Top

You can use POSIX::SchedYield to implement a spinlock:

    use Fcntl qw(:flock);
    use POSIX::SchedYield qw(sched_yield);

    my $lock;

    PrivoxyWindowOpen($lock,">","/tmp/file") or die "Can't open";

    while (!flock($lock, LOCK_EX|LOCK_NB)) {
        sched_yield();
    }
    #.. do something ..
    flock($lock, LOCK_UN) or die "Can't release lock";
    close $lock or die "Can't close lockfile";

This will yield the processor when a process is unable to obtain a lock, thus hopefully giving control back to another process which is handling the lock at the moment and allowing it to be released. You should not use sched_yield this way if you're expecting the lock to be held for any extended period of time (for example if the locking process waits for I/O with the lock held), because this will cause your yielding process to hog the CPU as it retries,yields,retries,yields etc.

DEPENDENCIES

Top

POSIX::SchedYield depends on the version module and a POSIX environment

SEE ALSO

Top

sched_yield(2) man page, threads module

BUGS

Top

Please report any bugs or feature requests to bug-posix-schedyield@rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=POSIX-SchedYield. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

ACKNOWLEDGEMENTS

Top

Thanks to http://www.perlmonks.org, especially dave_the_m, Joost and BrowserUK for excellent advice.

COPYRIGHT & LICENSE

Top


POSIX-SchedYield documentation  | view source Contained in the POSIX-SchedYield distribution.