Just use a better scripting language: I.e. php
Everything works perfect then to see when the leap happens:
<?
while(!usleep(100000)) {
$newdate = date("H:i:s");
$i++;
if ($newdate != $olddate) {
echo $newdate." - $i\n";
$olddate = $newdate;
$i = 0;
}
}
?>
- Solved
Greetings
Jörg
_______________________________________________ pool mailing list [email protected] http://lists.ntp.org/listinfo/pool
