亚洲av成人无遮挡网站在线观看,少妇性bbb搡bbb爽爽爽,亚洲av日韩精品久久久久久,兔费看少妇性l交大片免费,无码少妇一区二区三区

  免費(fèi)注冊 查看新帖 |

Chinaunix

  平臺 論壇 博客 文庫
最近訪問板塊 發(fā)新帖
查看: 1618 | 回復(fù): 0
打印 上一主題 下一主題

[其他] 內(nèi)核宏展開的問題。。 [復(fù)制鏈接]

論壇徽章:
0
跳轉(zhuǎn)到指定樓層
1 [收藏(0)] [報(bào)告]
發(fā)表于 2012-07-30 15:15 |只看該作者 |倒序?yàn)g覽
本帖最后由 chen1922 于 2012-07-30 15:17 編輯

=============參考內(nèi)核的宏==================

  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)
復(fù)制代碼
=========================================

自定義的線程池結(jié)構(gòu)

  1. typedef struct{                  /* 線程池 */
  2.     pthread_t thread_id;         /* 線程ID */
  3.     unsigned long thread_count;  /* 線程處理數(shù) */
  4.     int flags;                   /* 線程狀態(tài) */
  5.     struct list_head list;
  6. }Thread_pool;
復(fù)制代碼
函數(shù)調(diào)用:

  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. }
復(fù)制代碼
gcc -E 后內(nèi)容如下:

  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. }
復(fù)制代碼
我看了半天還是沒發(fā)現(xiàn)有啥問題,但是編譯器警告。。。。請指教{:3_188:}
thread_make.c: 在函數(shù)‘thread_make’中:
thread_make.c:12:11: 警告: 從不兼容的指針類型初始化 [默認(rèn)啟用]
您需要登錄后才可以回帖 登錄 | 注冊

本版積分規(guī)則 發(fā)表回復(fù)

  

北京盛拓優(yōu)訊信息技術(shù)有限公司. 版權(quán)所有 京ICP備16024965號-6 北京市公安局海淀分局網(wǎng)監(jiān)中心備案編號:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年舉報(bào)專區(qū)
中國互聯(lián)網(wǎng)協(xié)會會員  聯(lián)系我們:huangweiwei@itpub.net
感謝所有關(guān)心和支持過ChinaUnix的朋友們 轉(zhuǎn)載本站內(nèi)容請注明原作者名及出處

清除 Cookies - ChinaUnix - Archiver - WAP - TOP