当前位置: 技术问答>linux和unix
链表问题
来源: 互联网 发布时间:2016-09-08
本文导语: hlist_for_each_entry(tpos, pos, head, member) for (pos = (head)->first; pos && ({ prefetch(pos->next); 1;}) && ...
hlist_for_each_entry(tpos, pos, head, member)
for (pos = (head)->first;
pos && ({ prefetch(pos->next); 1;}) &&
({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;});
pos = pos->next)
prefetch(pos->next);1; 加;1;是干什么?哪位高手知道?
for (pos = (head)->first;
pos && ({ prefetch(pos->next); 1;}) &&
({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;});
pos = pos->next)
prefetch(pos->next);1; 加;1;是干什么?哪位高手知道?
|
for (pos = (head)->first; xxxx ; pos = pos->next)
中间判断循环结束条件那一大串,分开来看就是:
如果pos为NULL就结束循环,否则执行prefetch和hlist_entry
加上两个;1; 是为了忽略掉prefetch和hlist_entry的返回值,使pos成为判断循环结束的唯一条件。
a && b; 如果表达式a的结果是0,就不会执行表达式b
所以,当pos为NULL, prefetch和hlist_entry不会执行。
中间判断循环结束条件那一大串,分开来看就是:
如果pos为NULL就结束循环,否则执行prefetch和hlist_entry
加上两个;1; 是为了忽略掉prefetch和hlist_entry的返回值,使pos成为判断循环结束的唯一条件。
a && b; 如果表达式a的结果是0,就不会执行表达式b
所以,当pos为NULL, prefetch和hlist_entry不会执行。
|
pos && ({ prefetch(pos->next); 1;}) &&
可能是想让两个&&之间的值为1吧。
可能是想让两个&&之间的值为1吧。
|
int main()
{
printf("%dn", ({0; 1;}));
printf("%dn", ({1; 0;}));
}
{
printf("%dn", ({0; 1;}));
printf("%dn", ({1; 0;}));
}
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。