The Linux Kernel API | ||
---|---|---|
<<< Previous | Next >>> |
empty _and_ checks that no other CPU might be in the process of still modifying either member
using list_empty_careful without synchronization can only be safe if the only activity that can happen to the list entry is list_del_init. Eg. it cannot be used if another CPU could re-list_add it.
<<< Previous | Home | Next >>> |
list_empty | Up | list_splice |