diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2016-10-24 02:15:36 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2016-10-24 02:15:36 +0000 |
commit | 9ef3a9f8b2704693496af12120ea3ab40389bf7b (patch) | |
tree | 9ed582b049881f1271a6b02978f1ed6d28a4f948 /src/sysdeps/tryitimer.c | |
parent | 422d91b2b0a2b8b3a8af510cc55b1400c60be303 (diff) | |
download | skalibs-9ef3a9f8b2704693496af12120ea3ab40389bf7b.tar.xz |
Add the alarm library, first draft.
Diffstat (limited to 'src/sysdeps/tryitimer.c')
-rw-r--r-- | src/sysdeps/tryitimer.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/sysdeps/tryitimer.c b/src/sysdeps/tryitimer.c new file mode 100644 index 0000000..4fd3454 --- /dev/null +++ b/src/sysdeps/tryitimer.c @@ -0,0 +1,10 @@ +/* ISC license. */ + +#include <sys/time.h> + +int main (void) +{ + struct itimerval blah ; + if (getitimer(ITIMER_REAL, &blah) < 0) return 111 ; + return 0 ; +} |