免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: funmain
打印 上一主题 下一主题

帮我看哈这个在linux下多线程编程-条件变量编程,哪儿出错了!! [复制链接]

论坛徽章:
1
拜羊年徽章
日期:2015-03-03 16:15:43
11 [报告]
发表于 2011-11-21 12:58 |只看该作者
你把代码和调试时的现象,问题具体一点贴出来吧,没太明白你的问题.你具体想干什么呢,想单步进入线程中或跳过 ...
qqrilxk 发表于 2011-11-21 10:05


代码在单位,我明天整理一下,贴出来; 大致是这么段代码:

  我把系统所有线程一次性产生:
1   for (i=0, i<6; i++)
2 {
3    ret = pthread_create (&tid1, NULL, (void *)pthread_func_1, NULL);  
4 }

我在第三行设置断点,启动程序,程序停在第三行。这没问题
当我要继续执行(continue)/或跳过该行听停到下一步(next)时,GDB很容易就挂了。我本意是要用
(GDB)continue 六次,让6个线程都被创建,再转向线程debug. (GDB)continue 总是让GDBserver hang up

论坛徽章:
0
12 [报告]
发表于 2011-11-26 23:39 |只看该作者
估计2楼看错了吧

论坛徽章:
0
13 [报告]
发表于 2011-12-18 22:59 |只看该作者
你的printf函数里面换行符号写错了,所以本应该是行缓冲的,现在暂时没有输出而已。
printf ("This is pthread2!/n") ==> printf ("This is pthread2!\n");
另外代码用
  1. [/code]括起来,复制下来还要整理格式,很烦。可以用gdb多线程调试。

  2. [code]
  3. /*
  4. * =====================================================================================
  5. *
  6. *       Filename:  ts.c
  7. *
  8. *    Description:  i
  9. *
  10. *        Version:  1.0
  11. *        Created:  2011年12月18日 22时20分59秒
  12. *       Revision:  none
  13. *       Compiler:  gcc
  14. *
  15. *         Author:  YOUR NAME (),
  16. *        Company:  
  17. *
  18. * =====================================================================================
  19. */

  20. /*  condmutex.c
  21. *  *
  22. *  */
  23. #include <stdlib.h>
  24. #include <stdio.h>
  25. #include <pthread.h>
  26. #include <errno.h>
  27. #include <unistd.h>

  28. int gnum = 0;                        // globle variable
  29. pthread_mutex_t mutex;
  30. pthread_cond_t cond;


  31. void pthread_func_1 (void);
  32. void pthread_func_2 (void);

  33. int main (void)
  34. {
  35.   pthread_t tid1 = 0;
  36.   pthread_t tid2 = 0;
  37.   int ret = 0;

  38.   pthread_mutex_init (&mutex, NULL);
  39.   pthread_cond_init (&cond, NULL);
  40.   ret = pthread_create (&tid1, NULL, (void *) pthread_func_1, NULL);
  41.   if (ret != 0)
  42.   {
  43.       perror ("pthread_1_create");
  44.   }

  45.   ret = pthread_create (&tid2, NULL, (void *) pthread_func_2, NULL);
  46.   if (ret != 0)
  47.   {
  48.       perror ("pthread_2_create");
  49.   }
  50.   
  51.   sleep (1);
  52.   pthread_join (tid1, NULL);
  53.   pthread_join (tid2, NULL);
  54.   printf ("main programme exit!/n");
  55.   
  56.   return 0;
  57. }

  58. void pthread_func_1 (void)
  59. {
  60.    int i = 0;
  61.    
  62.    for (; i < 10; i++)
  63.    {
  64.        printf ("This is pthread1!\n");

  65.        pthread_mutex_lock (&mutex);        // acquire mutex lock

  66.        while (gnum <= 3)
  67.        {
  68.                pthread_cond_wait (&cond, &mutex);
  69.        }

  70.        gnum = 0;        // gnum++;  // critical resource.  
  71.        printf ("Thread1 add one to num:%d\n", gnum);
  72.       
  73.        pthread_mutex_unlock (&mutex);        // release mutex lock

  74.        sleep (1);}
  75.        pthread_exit (0);
  76. }

  77. void pthread_func_2 (void)
  78. {
  79.     int i = 0;
  80.            
  81.     for (; i < 15; i++)
  82.     {
  83.         printf ("This is pthread2!\n");
  84.       
  85.         pthread_mutex_lock (&mutex);        // acquire nutex lock.
  86.                
  87.         gnum++;
  88.         printf("Thread2 add one to num:%d\n",gnum);
  89.         
  90.         if (gnum == 4)
  91.         {
  92.             pthread_cond_signal (&cond);
  93.         }
  94.                
  95.         pthread_mutex_unlock (&mutex);
  96.         sleep (1);
  97.     }

  98.     pthread_exit (0);
  99. }
复制代码

论坛徽章:
0
14 [报告]
发表于 2011-12-18 23:29 |只看该作者
你的printf函数里面换行符号写错了,所以本应该是行缓冲的,现在暂时没有输出而已。
printf ("This is pthread2!/n") ==> printf ("This is pthread2!\n");
另外代码用
  1. [/code]括起来,复制下来还要整理格式,很烦。可以用gdb多线程调试。

  2. [code]
  3. /*  condmutex.c
  4. *  *
  5. *  */
  6. #include <stdlib.h>
  7. #include <stdio.h>
  8. #include <pthread.h>
  9. #include <errno.h>
  10. #include <unistd.h>

  11. int gnum = 0;                        // globle variable
  12. pthread_mutex_t mutex;
  13. pthread_cond_t cond;


  14. void pthread_func_1 (void);
  15. void pthread_func_2 (void);

  16. int main (void)
  17. {
  18.   pthread_t tid1 = 0;
  19.   pthread_t tid2 = 0;
  20.   int ret = 0;

  21.   pthread_mutex_init (&mutex, NULL);
  22.   pthread_cond_init (&cond, NULL);
  23.   ret = pthread_create (&tid1, NULL, (void *) pthread_func_1, NULL);
  24.   if (ret != 0)
  25.   {
  26.       perror ("pthread_1_create");
  27.   }

  28.   ret = pthread_create (&tid2, NULL, (void *) pthread_func_2, NULL);
  29.   if (ret != 0)
  30.   {
  31.       perror ("pthread_2_create");
  32.   }
  33.   
  34.   sleep (1);
  35.   pthread_join (tid1, NULL);
  36.   pthread_join (tid2, NULL);
  37.   printf ("main programme exit!/n");
  38.   
  39.   return 0;
  40. }

  41. void pthread_func_1 (void)
  42. {
  43.    int i = 0;
  44.    
  45.    for (; i < 10; i++)
  46.    {
  47.        printf ("This is pthread1!\n");

  48.        pthread_mutex_lock (&mutex);        // acquire mutex lock

  49.        while (gnum <= 3)
  50.        {
  51.                pthread_cond_wait (&cond, &mutex);
  52.        }

  53.        gnum = 0;        // gnum++;  // critical resource.  
  54.        printf ("Thread1 add one to num:%d\n", gnum);
  55.       
  56.        pthread_mutex_unlock (&mutex);        // release mutex lock

  57.        sleep (1);}
  58.        pthread_exit (0);
  59. }

  60. void pthread_func_2 (void)
  61. {
  62.     int i = 0;
  63.            
  64.     for (; i < 15; i++)
  65.     {
  66.         printf ("This is pthread2!\n");
  67.       
  68.         pthread_mutex_lock (&mutex);        // acquire nutex lock.
  69.                
  70.         gnum++;
  71.         printf("Thread2 add one to num:%d\n",gnum);
  72.         
  73.         if (gnum == 4)
  74.         {
  75.             pthread_cond_signal (&cond);
  76.         }
  77.                
  78.         pthread_mutex_unlock (&mutex);
  79.         sleep (1);
  80.     }

  81.     pthread_exit (0);
  82. }
复制代码

论坛徽章:
0
15 [报告]
发表于 2011-12-18 23:31 |只看该作者
你的printf函数里面换行符号写错了,所以本应该是行缓冲的,现在暂时没有输出而已。
printf ("This is pthread2!/n") ==> printf ("This is pthread2!\n");
另外代码用
  1. [/code]括起来,复制下来还要整理格式,很烦。可以用gdb多线程调试。

  2. [code]
  3. /*  condmutex.c
  4. *  *
  5. *  */
  6. #include <stdlib.h>
  7. #include <stdio.h>
  8. #include <pthread.h>
  9. #include <errno.h>
  10. #include <unistd.h>

  11. int gnum = 0;                        // globle variable
  12. pthread_mutex_t mutex;
  13. pthread_cond_t cond;


  14. void pthread_func_1 (void);
  15. void pthread_func_2 (void);

  16. int main (void)
  17. {
  18.   pthread_t tid1 = 0;
  19.   pthread_t tid2 = 0;
  20.   int ret = 0;

  21.   pthread_mutex_init (&mutex, NULL);
  22.   pthread_cond_init (&cond, NULL);
  23.   ret = pthread_create (&tid1, NULL, (void *) pthread_func_1, NULL);
  24.   if (ret != 0)
  25.   {
  26.       perror ("pthread_1_create");
  27.   }

  28.   ret = pthread_create (&tid2, NULL, (void *) pthread_func_2, NULL);
  29.   if (ret != 0)
  30.   {
  31.       perror ("pthread_2_create");
  32.   }
  33.   
  34.   sleep (1);
  35.   pthread_join (tid1, NULL);
  36.   pthread_join (tid2, NULL);
  37.   printf ("main programme exit!/n");
  38.   
  39.   return 0;
  40. }

  41. void pthread_func_1 (void)
  42. {
  43.    int i = 0;
  44.    
  45.    for (; i < 10; i++)
  46.    {
  47.        printf ("This is pthread1!\n");

  48.        pthread_mutex_lock (&mutex);        // acquire mutex lock

  49.        while (gnum <= 3)
  50.        {
  51.                pthread_cond_wait (&cond, &mutex);
  52.        }

  53.        gnum = 0;        // gnum++;  // critical resource.  
  54.        printf ("Thread1 add one to num:%d\n", gnum);
  55.       
  56.        pthread_mutex_unlock (&mutex);        // release mutex lock

  57.        sleep (1);}
  58.        pthread_exit (0);
  59. }

  60. void pthread_func_2 (void)
  61. {
  62.     int i = 0;
  63.            
  64.     for (; i < 15; i++)
  65.     {
  66.         printf ("This is pthread2!\n");
  67.       
  68.         pthread_mutex_lock (&mutex);        // acquire nutex lock.
  69.                
  70.         gnum++;
  71.         printf("Thread2 add one to num:%d\n",gnum);
  72.         
  73.         if (gnum == 4)
  74.         {
  75.             pthread_cond_signal (&cond);
  76.         }
  77.                
  78.         pthread_mutex_unlock (&mutex);
  79.         sleep (1);
  80.     }

  81.     pthread_exit (0);
  82. }
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP