Notice
Recent Posts
Recent Comments
Link
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Archives
Today
Total
관리 메뉴

내블로그

Timer 본문

프로그래밍/Perl

Timer

잡동사니보관 2017. 4. 12. 13:49


 #!/usr/bin/perl

use strict;

use warnings;

use Time::HiRes qw(ITIMER_REAL setitimer);


$SIG{ALRM} = sub {};

setitimer(ITIMER_REAL, 0.1, 3);

while (1) {

    sleep ;

    print time()." : Main Loop\n";

}




'프로그래밍 > Perl' 카테고리의 다른 글

파일 수정시간  (0) 2019.10.08
perl MCPAN  (0) 2012.02.28