X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;ds=sidebyside;f=src%2Fshared%2Fmacro.h;fp=src%2Fshared%2Fmacro.h;h=e6734804bd36a8efb7079e02dcdcfeefdce014e9;hb=fb835651aff79a1e7fc5795086c9b26e59a8e6ca;hp=2807bc74e849c65b4f6706c988580fed30a885c3;hpb=418bcb0ce3b704ea26ee1b4a68706abca536f65a;p=elogind.git diff --git a/src/shared/macro.h b/src/shared/macro.h index 2807bc74e..e6734804b 100644 --- a/src/shared/macro.h +++ b/src/shared/macro.h @@ -79,6 +79,9 @@ #define XCONCATENATE(x, y) x ## y #define CONCATENATE(x, y) XCONCATENATE(x, y) +#define UNIQ_T(x, uniq) CONCATENATE(__unique_prefix_, CONCATENATE(x, uniq)) +#define UNIQ __COUNTER__ + /* Rounds up */ #define ALIGN4(l) (((l) + 3) & ~3) @@ -122,13 +125,13 @@ static inline unsigned long ALIGN_POWER2(unsigned long u) { * @ptr: the pointer to the member. * @type: the type of the container struct this is embedded in. * @member: the name of the member within the struct. - * */ -#define container_of(ptr, type, member) \ +#define container_of(ptr, type, member) __container_of(UNIQ, (ptr), type, member) +#define __container_of(uniq, ptr, type, member) \ __extension__ ({ \ - const typeof( ((type *)0)->member ) *__mptr = (ptr); \ - (type *)( (char *)__mptr - offsetof(type,member) ); \ - }) + const typeof( ((type*)0)->member ) *UNIQ_T(A, uniq) = (ptr); \ + (type*)( (char *)UNIQ_T(A, uniq) - offsetof(type,member) ); \ + }) #undef MAX #define MAX(a,b) \