Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
platform_timer_posix_test.c
Go to the documentation of this file.
1#include <signal.h>
2#include <sys/time.h>
3#include <stdlib.h>
4
5int main() {
6 struct itimerval enable = {{0, 0}, {0, 1000u}};
7 if(setitimer(ITIMER_REAL, &enable, NULL))
8 return 1;
9 return 0;
10}