I tried a few ways, but they all seem to burp a couple
of seconds once in a while even when niced. Shouldn't
miss a whole minute though if you set $duration to 60.
#!/usr/bin/perl -w
use strict;
use Time::HiRes qw (usleep);
$|=1;
my $duration = 2; # seconds between job starts
my $maxsecs = 30;
my $tinit = my $t0 = time; my $t1;
while (1) {
$t1 = time;
last if $t1-$tinit > $maxsecs;
if ($t1-$t0 >= $duration) { # if delta-t >= d secs
&act;
if ($t1-$t0 > $duration+1) { print "(",$t1-$t0-$duration,")" };
$t0 = $t1;
}
&waitfortick;
}
sub act {
print "tick\n"; `boop`; # same 100% volume
}
sub waitfortick {
print ".";
#&sleepwait; # try these three separately
#&selwait;
&hireswait;
`beep`; # from xtune, does wave -d 0.01 -f 250 -l 30
}
sub sleepwait { # tick approx 1 sec
sleep 1;
}
sub selwait {
select(undef, undef, undef, 0.10); # wait approx 100 millisecs
}
sub hireswait {
usleep 100000; # sleep 100,000 microsecs if you have usleep
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.