| Server IP : 217.160.0.143 / Your IP : 216.73.216.50 Web Server : Apache System : Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux User : u89353126 ( 3190106) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/share/doc/libipc-shareable-perl/examples/ |
Upload File : |
#!/usr/bin/perl -w
#
# Test of shared arrays courtesy Terry Ewing <terry@intevo.com>
# See also eg/put
use lib ".";
use IPC::Shareable;
use strict;
my @shared;
my $ipch = tie @shared, 'IPC::Shareable',
"foco",
{ create => 1,
exclusive => 'no',
mode => 0666,
size => 1024*512
};
while (1) {
$ipch->shlock;
my $line = shift(@shared);
$ipch->shunlock;
if ($line) {
print $line."\n";
}
# sleep(2);
}