- 论坛徽章:
- 0
|
本帖最后由 chen1922 于 2012-07-30 15:17 编辑
=============参考内核的宏==================
- struct list_head{
- struct list_head *next;
- struct list_head *prev;
- };
- #define list_entry(ptr, type, member) ({\
- const typeof(((type *)0)->member) * __mptr = (ptr); \
- (type *)((char *)__mptr - offsetof(type, member)); \
- })
- #define offsetof(TYPE, MEMBER) ((char *)&((TYPE *)0)->MEMBER)
复制代码 =========================================
自定义的线程池结构
- typedef struct{ /* 线程池 */
- pthread_t thread_id; /* 线程ID */
- unsigned long thread_count; /* 线程处理数 */
- int flags; /* 线程状态 */
- struct list_head list;
- }Thread_pool;
复制代码 函数调用:
- void thread_make(struct list_head *head)
- {
- Thread_pool *tp;
- tp = list_entry(&head->next, Thread_pool, list);
- pthread_create(&tp->thread_id, NULL, doit, (void *)tp);
- }
复制代码 gcc -E 后内容如下:
- void thread_make(struct list_head *head)
- {
- Thread_pool *tp;
- tp = ({ const typeof(((Thread_pool *)0)->list) * __mptr = (&head->next);
- (Thread_pool *)((char *)__mptr - ((char *)&((Thread_pool *)0)->list));
- });
- pthread_create(&tp->thread_id, ((void *)0), doit, (void *)tp);
- }
复制代码 我看了半天还是没发现有啥问题,但是编译器警告。。。。请指教{:3_188:}
thread_make.c: 在函数‘thread_make’中:
thread_make.c:12:11: 警告: 从不兼容的指针类型初始化 [默认启用] |
|