From 33f058f0e67357543c0b1619f4f45779d054a6bf Mon Sep 17 00:00:00 2001 From: Jonathan McCrohan Date: Sun, 19 Feb 2012 23:17:53 +0000 Subject: Remove debug/testing files. --- alarm.c | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 alarm.c (limited to 'alarm.c') diff --git a/alarm.c b/alarm.c deleted file mode 100644 index a0bfa35..0000000 --- a/alarm.c +++ /dev/null @@ -1,29 +0,0 @@ -#include -#include -#include -#include -#include - -volatile unsigned int variable = 0; -volatile unsigned int print_variable = 0; - -void alarm_handler(int signum) -{ - alarm(60); -} - -int main() -{ - signal(SIGALRM, alarm_handler); - alarm(1); - - for (;;) - { - select(0, NULL, NULL, NULL, NULL); - time_t t = time(NULL); - struct tm tm = *localtime(&t); - printf("%d-%d-%d %d:%d:%d\n", tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec); - - } -} - -- cgit v1.2.3