免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1762 | 回复: 8
打印 上一主题 下一主题

看看这段代码,定时器怎么就没有走呢 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-08-26 16:49 |只看该作者 |倒序浏览
加了两个线程,就不动了!
为什么呢?
调试了好久,还是不对!




#include <stdio.h>
#include <time.h>
#include <sys/time.h>
#include <stdlib.h>
#include <signal.h>
int count = 0;
void thread1(void)
{
int i;
while(1)
{


printf("1");



}

}

void thread2(void)
{
int i;
while(1)
{


printf("2");



}

}


void set_timer()
{
        struct itimerval itv, oldtv;
        itv.it_interval.tv_sec = 5;
        itv.it_interval.tv_usec = 0;
        itv.it_value.tv_sec = 5;
        itv.it_value.tv_usec = 0;

        setitimer(ITIMER_REAL, &itv, &oldtv);
}

void sigalrm_handler(int sig)
{       int i;
        count++;
      
        for(i=0;i<100;i++)
                printf("3");
}

int main()
{       pthread_t id1,id2;
        signal(SIGALRM,sigalrm_handler);
        set_timer();
        
               
                pthread_create(&id1,NULL,(void*)thread1,NULL);
            pthread_create(&id2,NULL,(void*)thread2,NULL);
                while(1);
       
                pthread_join(id1,NULL);
                pthread_join(id2,NULL);
          
                exit(0);
}

论坛徽章:
0
2 [报告]
发表于 2006-08-27 09:36 |只看该作者
郁闷!
怎么又没有人回答阿?

论坛徽章:
0
3 [报告]
发表于 2006-08-27 11:43 |只看该作者
01  #include <stdio.h>
02  #include <time.h>
03  #include <sys/time.h>
04  #include <stdlib.h>
05  #include <signal.h>
06  
07  int count = 0;
08  
09  void thread1(void) {
10  
11      while (1)
12          printf("1");
13  
14  }
15  
16  void thread2(void) {
17  
18      while(1)
19          printf("2");
20  
21  }
22  
23  
24  void set_timer() {
25  
26          struct itimerval itv, oldtv;
27  
28          itv.it_interval.tv_sec = 5;
29          itv.it_interval.tv_usec = 0;
30          itv.it_value.tv_sec = 5;
31          itv.it_value.tv_usec = 0;
32  
33          setitimer(ITIMER_REAL, &itv, &oldtv);
34  
35  }
36  
37  void sigalrm_handler(int sig) {
38  
39       int i;
40          count++;
41        
42          for(i = 0; i < 100; i++)
43                  printf("3");
44  
45  }
46  
47  int main() {
48  
49       pthread_t id1, id2;
50  
51          signal(SIGALRM, sigalrm_handler);
52          set_timer();
53         
54                 
55          pthread_create(&id1, NULL, (void*) thread1, NULL);
56          pthread_create(&id2, NULL, (void*) thread2, NULL);
57  
58             while(1)
59          ;
60  
61          pthread_join(id1, NULL);
62          pthread_join(id2, NULL);
63            
64          return 0;
65  
66  }


可以解释一下你的程序里第58 - 59行是干什么的吗?

论坛徽章:
0
4 [报告]
发表于 2006-08-27 12:44 |只看该作者
那就没有用
我只是测试的时候 用的
我定时也不长
我感觉是
CYWIN 有问题 老是跑不出来结果, 这么一段小小的延时 要很久才能出现效果

[ 本帖最后由 foolfoolbird 于 2006-8-27 12:45 编辑 ]

论坛徽章:
0
5 [报告]
发表于 2006-08-27 16:10 |只看该作者
直接不停地while循环会不会导致cpu占用过高?
这会不会导致你的程序表现出来的行为和预期的不一样?

论坛徽章:
0
6 [报告]
发表于 2006-08-27 18:30 |只看该作者
不会的!
我的任务不断的在切换这运行的!
后面的那个无限循环就没有用,我创建的两个线程是不可能退出的!
下午我在板子上跑起了这个程序!
定时没有错误!

论坛徽章:
0
7 [报告]
发表于 2006-08-28 08:12 |只看该作者
问一下你的ptherad调用的是哪个库函数

论坛徽章:
0
8 [报告]
发表于 2006-08-28 14:25 |只看该作者
原帖由 iwinux 于 2006-8-27 11:43 发表
01  #include <stdio.h>
02  #include <time.h>
03  #inc ...

这个孩子比较认真

论坛徽章:
0
9 [报告]
发表于 2006-08-29 15:52 |只看该作者
把主线程的while(1)去了,看看能行吗?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP