免费注册 查看新帖 |

Chinaunix

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

多线程键值求助(已解决) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-07-13 10:20 |只看该作者 |倒序浏览
本帖最后由 juffun 于 2010-07-13 10:28 编辑

APUE在讲多线程里面有:
      需要确保分配的键并不会由于在初始化阶段的竞争而发生变动.…… 有些线程可能看到某个键值,而另一个线程看到的是另一个键值 ……
我用如下的代码试验:
  1. #include <fcntl.h>
  2. #include <pthread.h>
  3. #include <stdlib.h>

  4. pthread_cond_t qready;
  5. pthread_mutex_t qlock;
  6. pthread_key_t key;

  7. void *
  8. thr_fn1(void *arg)
  9. {
  10.   pthread_key_create(&key, NULL);
  11.   int *b = &key;
  12.   printf("Thr1: &key: %x,key: %d, b: %x, *b: %d\n",&key, key, b, *b);
  13.   return (void *)0;
  14. }

  15. void *
  16. thr_fn2(void *arg)
  17. {
  18.   sleep(1);
  19.   pthread_key_create(&key, NULL);
  20.   int *b = &key;
  21.   printf("Thr2: &key: %x,key: %d, b: %x, *b: %d\n",&key, key, b, *b);
  22.   return (void *)0;
  23. }

  24. int
  25. main()
  26. {
  27.    int err;
  28.    pthread_t tid, tid1;
  29.   int *b = &key;
  30.    err = pthread_create(&tid, NULL, thr_fn1, NULL);
  31.    if(err != 0)
  32.       printf("create thread error\n");
  33.    err = pthread_create(&tid1, NULL, thr_fn2, NULL);
  34.    if(err != 0)
  35.       printf("create thread error\n");
  36.   sleep(3);
  37.   printf("Main: &key: %x,key: %d, b: %x, *b: %d\n",&key, key, b, *b);
  38.   getchar();
  39.   return 0;
  40. }
复制代码
得到如下的输出:
Thr1: &key: 8049948,key: 0, b: 8049948, *b: 0
Thr2: &key: 8049948,key: 1, b: 8049948, *b: 1
Main: &key: 8049948,key: 1, b: 8049948, *b: 1

由于竞争,两个线程看到的键值确实不一样,但为什么会出现同样的地址却得到地址里面的值不一样,一个是0,一个是1呢?

论坛徽章:
0
2 [报告]
发表于 2010-07-13 10:28 |只看该作者
晕。。。刚才想晕了。。。原来值被改了

论坛徽章:
0
3 [报告]
发表于 2010-07-13 10:37 |只看该作者
关于这个,总觉得APUE2举的那个getenv的例子不太适合,因为根本用不上私有数据么
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP