红联Linux门户
Linux帮助

klist_node_attached() -- 检测klist_node是否为空

发布时间:2007-09-06 00:55:25来源:红联作者:hearer
driver_bound() --> klist_node_attached()

linux-2.6.21.5/lib/klist.c

klist_node不为空则返回真,否则返回假
/**
* klist_node_attached - Say whether a node is bound to a list or not.
* @n: Node that we're testing.
*/

int klist_node_attached(struct klist_node * n)
{
return (n->n_klist != NULL);
}
文章评论

共有 0 条评论