123456789101112131415161718192021222324252627282930313233343536 |
- #include <features.h>
- #include <setjmp.h>
- #include <signal.h>
- #include <sys/types.h>
- #ifdef __UCLIBC_HAS_THREADS__
- #include <pthread.h>
- #endif
- typedef int kernel_timer_t;
- struct timer {
-
- int sigev_notify;
-
- kernel_timer_t ktimerid;
-
-
- void (*thrfunc) (sigval_t);
- sigval_t sival;
- #ifdef __UCLIBC_HAS_THREADS__
- pthread_attr_t attr;
- #endif
- };
|