爱上香烟
发布时间:2016-04-13 19:30:48
#define __list_for_each(pos, head) \ for (pos = (head)->next; pos != (head); pos = pos->next)#define list_for_each_safe(pos, n, head) \ for (pos = (head)->next, n = pos->next; pos != (head); \ pos = n, n = pos->next)__list_for_each(....){&.........【阅读全文】
发布时间:2016-04-12 20:04:43
#ifndef _ACMSG_LIST_H#define _ACMSG_LIST_H#include #include #include "../private/cfm/cfmsocket.h"//#include "ethqos.h"/** * container_of - cast a member of a structure out to the containing structure * @ptr:the pointer to the member. * @type:the type.........【阅读全文】