- 论坛徽章:
- 5
|
其实可以用timer_create的
然后给付ID,不过似乎有点费劲
- #include <sys/time.h>
- #include <stdio.h>
- #include <unistd.h>
- #include <signal.h>
- #include <string.h>
- void handle(int signo)
- {
- printf("hello world\n");
- }
- void init_sigaction(void)
- {
- struct sigaction tact;
- tact.sa_handler = handle;
- tact.sa_flags = 0;
- sigemptyset(&tact.sa_mask);
- sigaction(SIGALRM, &tact, NULL);
- }
- void init_time()
- {
- struct itimerval value;
-
- value.it_value.tv_sec = 0;
- value.it_value.tv_usec = 20;
- value.it_interval = value.it_value;
- setitimer(ITIMER_REAL, &value, NULL);
- }
- int main()
- {
- init_sigaction();
- init_time();
- while ( 1 );
- return 0;
- }
复制代码
上面是最简单的配合使用
下面是csdn里找的,但是最关键的是这个librt.a,有source的能否提供下?
感激不尽
- gcc example.c -lrt -lpthread
-
- #include <stdio.h>
- #include <time.h>
- #include <signal.h>
- void
- handle (sigval_t v)
- {
- time_t t;
- char p[32];
- time (&t);
- strftime (p, sizeof (p), "%T", localtime (&t));
- printf ("%s thread %d, val = %d, signal captured.\n", p, pthread_self (),
- v.sival_int);
- return;
- }
-
- int
- create (int seconds, int id)
- {
- timer_t tid;
- struct sigevent se;
- struct itimerspec ts, ots;
- memset (&se, 0, sizeof (se));
- se.sigev_notify = SIGEV_THREAD;
- se.sigev_notify_function = handle;
- se.sigev_value.sival_int = id;
- if (timer_create (CLOCK_REALTIME, &se, &tid) < 0)
- {
- perror ("timer_creat");
- return -1;
- }
- puts ("timer_create successfully.");
- ts.it_value.tv_sec = 3;
- ts.it_value.tv_nsec = 0;
- ts.it_interval.tv_sec = seconds;
- ts.it_interval.tv_nsec = 0;
- if (timer_settime (tid, TIMER_ABSTIME, &ts, &ots) < 0)
- {
- perror ("timer_settime");
- return -1;
- }
- return 0;
- }
-
- int
- main (void)
- {
- create (3, 1);
- create (5, 2);
- for (;;)
- {
- sleep (10);
- }
- }
复制代码 |
|