免费注册 查看新帖 |

Chinaunix

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

[其他] 内核宏展开的问题。。 [复制链接]

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

=============参考内核的宏==================

  1. struct list_head{
  2.      struct list_head *next;
  3.      struct list_head *prev;
  4. };

  5. #define list_entry(ptr, type, member) ({\
  6.     const typeof(((type *)0)->member) * __mptr = (ptr); \
  7.     (type *)((char *)__mptr - offsetof(type, member)); \
  8. })

  9. #define offsetof(TYPE, MEMBER) ((char *)&((TYPE *)0)->MEMBER)
复制代码
=========================================

自定义的线程池结构

  1. typedef struct{                  /* 线程池 */
  2.     pthread_t thread_id;         /* 线程ID */
  3.     unsigned long thread_count;  /* 线程处理数 */
  4.     int flags;                   /* 线程状态 */
  5.     struct list_head list;
  6. }Thread_pool;
复制代码
函数调用:

  1. void thread_make(struct list_head *head)
  2. {
  3.      Thread_pool *tp;

  4.      tp = list_entry(&head->next, Thread_pool, list);
  5.      pthread_create(&tp->thread_id, NULL, doit, (void *)tp);
  6. }
复制代码
gcc -E 后内容如下:

  1. void thread_make(struct list_head *head)
  2. {
  3.      Thread_pool *tp;

  4.      tp = ({ const typeof(((Thread_pool *)0)->list) * __mptr = (&head->next);                                                            
  5.            (Thread_pool *)((char *)__mptr - ((char *)&((Thread_pool *)0)->list));                                                         
  6.             });                                                                                                                           
  7.      pthread_create(&tp->thread_id, ((void *)0), doit, (void *)tp);                                                                       
  8. }
复制代码
我看了半天还是没发现有啥问题,但是编译器警告。。。。请指教{:3_188:}
thread_make.c: 在函数‘thread_make’中:
thread_make.c:12:11: 警告: 从不兼容的指针类型初始化 [默认启用]
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP