struct stat is not posix conform
[glibc.git] / rt / tst-timer2.c
blobb2ce9879ec6e6c4ccffcf5c033c487db77b47881
1 /* Test for crashing bugs when trying to create too many timers. */
3 #include <stdio.h>
4 #include <time.h>
5 #include <signal.h>
6 #include <sys/time.h>
7 #include <sys/resource.h>
8 #include <unistd.h>
10 #if _POSIX_THREADS
11 # include <pthread.h>
13 void
14 thread (union sigval arg)
16 puts ("Timeout");
19 int
20 do_test (void)
22 int i, res;
23 timer_t timerId;
24 struct itimerspec itval;
25 struct sigevent sigev;
27 itval.it_interval.tv_sec = 2;
28 itval.it_interval.tv_nsec = 0;
29 itval.it_value.tv_sec = 2;
30 itval.it_value.tv_nsec = 0;
32 sigev.sigev_notify = SIGEV_THREAD;
33 sigev.sigev_notify_function = thread;
34 sigev.sigev_notify_attributes = NULL;
35 sigev.sigev_value.sival_ptr = (void *) &timerId;
37 for (i = 0; i < 100; i++)
39 printf ("cnt = %d\n", i);
41 if (timer_create (CLOCK_REALTIME, &sigev, &timerId) < 0)
43 perror ("timer_create");
44 continue;
47 res = timer_settime (timerId, 0, &itval, NULL);
48 if (res < 0)
49 perror ("timer_settime");
51 res = timer_delete (timerId);
52 if (res < 0)
53 perror ("timer_delete");
56 return 0;
59 # define TEST_FUNCTION do_test ()
60 #else
61 # define TEST_FUNCTION 0
62 #endif
64 #include "../test-skeleton.c"