container_of(ptr,type,member)宏函数

概述:

**********container_of的功能是,通过一个结构的成员,进而获得这个结构的地址(即指向这个结构的指针)

**********container_of(ptr, type,member),是一个Linux内核中的宏.

**********container_of在内核中的定义是

#define container_of(ptr, type, member) ({				const typeof( ((type *)0)->member ) *__mptr = (ptr);	\	//1
	(type *)( (char *)__mptr - offsetof(type,member) );})		//2
**********container_of参数说明:

*****ptr---------------->是一个指针,这个指针所指的数据类型,和memmber的数据类型一样

*****type-------------->结构类型(container_of返回的就是这个type指针)

*****member-------->type数据型结构的一个成员

#############################################################################

1.typeof() C语言中的关键字

功能是:

获得类型

*****typeof()参数有两种形式:

**1). 表达式

**2). 数据类型

例如

表达式:

 extern int foo();
 typeof(foo()) var; //int   var

数据类型
   typeof(int *) a,b;
等价于:
   int *a,*b;
下面是两个等效声明,用于声明int类型的变量a。
   typeof(int) a; /*int类型*/
   typeof(‘b‘) a; /* GCC中这个表达式的类型是int(自动提升为int),
                  注意typeof(char)和typeof(‘b‘)得到的不是一样的,这个用sizeof可以看出来*/

#############################################################################

offsetof(type,member)

获得一个成员在结构体中的偏移
 

container_of(ptr,type,member)宏函数

上一篇:ERROR 2059 (HY000): Authentication plugin 'caching_sha2_password' cannot be loaded


下一篇:编程挑战 分巧克力