码迷,mamicode.com
首页 > 系统相关 > 详细

(六)linux内核中的offsetof与container_of宏

时间:2018-10-27 00:16:51      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:nta   htm   logs   const   code   ptr   tps   .com   contain   

参考:

#define offsetof(type, member) (size_t)&(((type*)0)->member)


#define container_of(ptr, type, member) ({      const typeof( ((type *)0)->member ) *__mptr = (ptr);      (type *)( (char *)__mptr - offsetof(type,member) );})

(六)linux内核中的offsetof与container_of宏

标签:nta   htm   logs   const   code   ptr   tps   .com   contain   

原文地址:https://www.cnblogs.com/walkinginthesun/p/9858813.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!