Subversion Repositories Kolibri OS

Rev

Rev 1321 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1321 Rev 1403
Line 579... Line 579...
579
}
579
}
Line 580... Line 580...
580
 
580
 
581
static inline void hlist_del(struct hlist_node *n)
581
static inline void hlist_del(struct hlist_node *n)
582
{
582
{
583
	__hlist_del(n);
583
	__hlist_del(n);
584
	n->next = LIST_POISON1;
584
    n->next = (struct hlist_node*)LIST_POISON1;
585
	n->pprev = LIST_POISON2;
585
    n->pprev = (struct hlist_node**)LIST_POISON2;
Line 586... Line 586...
586
}
586
}
587
 
587
 
588
static inline void hlist_del_init(struct hlist_node *n)
588
static inline void hlist_del_init(struct hlist_node *n)