免费注册 查看新帖 |

Chinaunix

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

[C] apue 线程的代码是不是有一点点瑕疵啊? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-02-23 13:15 |只看该作者 |倒序浏览
本帖最后由 xiantaozhaowei 于 2011-02-23 13:18 编辑
  1. #Include <stdio.h>
  2. #include <stdlib.h>
  3. #include <sys/types.h>
  4. #include <pthread.h>

  5. struct foo {
  6.   int a, b, c, d;
  7. };

  8. void
  9. printfoo(const char *s, const struct foo *fp)
  10. {
  11.   printf(s);
  12.   printf("  structure at 0x%x\n", (unsigned)fp);
  13.   printf("  foo.a = %d\n", fp->a);
  14.   printf("  foo.b = %d\n", fp->b);
  15.   printf("  foo.c = %d\n", fp->c);
  16.   printf("  foo.d = %d\n", fp->d);
  17. }

  18. void *
  19. thr_fn1(void *arg)
  20. {
  21.   struct foo foo = {1, 2, 3, 4};

  22.   printfoo("thread 1:\n", &foo);
  23.   pthread_exit((void *)&foo);
  24. }

  25. void *
  26. thr_fn2(void *arg)
  27. {
  28.   printf("thread 2: ID is %d\n", pthread_self());
  29.   pthread_exit((void *)0);
  30. }

  31. int
  32. main(void)
  33. {
  34.   int err;
  35.   pthread_t tid1, tid2;
  36.   struct foo*fp;

  37.   err = pthread_create(&tid1, NULL, thr_fn1, NULL);
  38.   if (err != 0)
  39.     printf("can't create thread 1: %s\n", strerror(err));
  40.   err = pthread_join(tid1, (void *)&fp);
  41.   /*
  42.   err = pthread_join(tid1, (void **)&fp);
  43.   和原型不一样啊
  44.   int pthread_join(pthread_t th, void **thread_return);
  45.   */
  46.   if (err != 0)
  47.     printf("can't join with thread 1: %s\n", strerror(err));
  48.   sleep(1);
  49.   printf("parent starting second thread\n");
  50.   err = pthread_create(&tid2, NULL, thr_fn2, NULL);
  51.   if (err != 0)
  52.     printf("can't create thread 2: %s\n", strerror(err));
  53.   sleep(1);
  54.   printfoo("parent:\n", fp);
  55.   exit(0);
  56. }
复制代码
SYNOPSIS
       #include <pthread.h>

       int pthread_join(pthread_t th, void **thread_return);

论坛徽章:
2
青铜圣斗士
日期:2015-11-26 06:15:59数据库技术版块每日发帖之星
日期:2016-07-24 06:20:00
2 [报告]
发表于 2011-02-23 13:39 |只看该作者
apue 也就这水平?


1. printf(s);

这代码一看就惊悚, 好歹也:
printf("%s", s); 好吗?
puts(s); 好吗?

当然, 如果整个代码都是受自己控制的, 这也算不上错误。
但作为经典书籍, 这样的例子难辞其咎……

2. printf("  structure at 0x%x\n", (unsigned)fp);
printf("  structure at 0x%p\n", fp);

3. pthread_exit((void *)&foo);

3.1 强转是不必要的
3.2 pthread_exit 不需要显示调用, return &foo。
3.3 这是局部变量啊……  后面的代码最多只能用其地址, 居然敢用其值……

4. err = pthread_join(tid1, (void *)&fp);
也就是楼主的问题。


int err;
struct foo*fp;
{
    void* ret;
    err = pthread_join(tid1, &ret);
    fp = ret;
}


5. exit(0)

不多写点代码不舒服斯基……

论坛徽章:
2
青铜圣斗士
日期:2015-11-26 06:15:59数据库技术版块每日发帖之星
日期:2016-07-24 06:20:00
3 [报告]
发表于 2011-02-23 13:43 |只看该作者
回复 2# OwnWaterloo

2. printf("  structure at 0x%x\n", (unsigned)fp);
printf("  structure at 0x%p\n", fp);
改正为: printf("  structure at 0x%p\n", (void*)fp);

论坛徽章:
0
4 [报告]
发表于 2011-02-23 13:52 |只看该作者
3.  pthread_exit  5. exit(0)  他是显似的教别人怎么搞。。

论坛徽章:
0
5 [报告]
发表于 2011-02-23 13:57 |只看该作者
回复 2# OwnWaterloo


    3. pthread_exit((void *)&foo);

3.1 强转是不必要的


这个在C++可以不转,但C语言是要求转的吧。。

论坛徽章:
2
青铜圣斗士
日期:2015-11-26 06:15:59数据库技术版块每日发帖之星
日期:2016-07-24 06:20:00
6 [报告]
发表于 2011-02-23 13:59 |只看该作者
回复 4# xiantaozhaowei

exit和pthread_exit 只有在非toplevel里打算结束才需要显示调用。
toplevel里直接return 即可, 效率可能稍欠。

这书没细看, 不知道有没有提这点。

如果没有, 那这么多代码里面不必要的exit调用, 它又难辞其咎了……

论坛徽章:
2
青铜圣斗士
日期:2015-11-26 06:15:59数据库技术版块每日发帖之星
日期:2016-07-24 06:20:00
7 [报告]
发表于 2011-02-23 14:01 |只看该作者
回复 5# 雨过白鹭洲

T* -> void* 两种语言中都是隐式的。
void* -> T* 在C里面依然是隐式的, 在C++里面才需要static_cast


int err;
struct foo*fp;
{
    void* ret;
    err = pthread_join(tid1, &ret);
    fp = ret;
}


C++的话:
int err;
foo*fp;
{
    void* ret;
    err = pthread_join(tid1, &ret);
    fp = static_cast<foo*>(ret);
}


兼容的写法:
int err;
struct foo*fp;
{
    void* ret;
    err = pthread_join(tid1, &ret);
    fp = (struct foo*)ret;
}

论坛徽章:
0
8 [报告]
发表于 2011-02-23 16:00 |只看该作者
那一行就是printf(s) ... 汗.. LZ还是仔细读一下诶. {:2_168:}
1. printf(s);

这代码一看就惊悚, 好歹也:
printf("%s", s); 好吗?
puts(s); 好吗

论坛徽章:
0
9 [报告]
发表于 2011-02-23 16:10 |只看该作者
其实这是一个错误的示范  --!

论坛徽章:
2
青铜圣斗士
日期:2015-11-26 06:15:59数据库技术版块每日发帖之星
日期:2016-07-24 06:20:00
10 [报告]
发表于 2011-02-23 18:16 |只看该作者
回复 9# davelv

这……  这样啊……
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP