/*
* This is the control structure for tasks blocked on mutex,
* which resides on the blocked task's kernel stack:
*/
struct mutex_waiter {
struct list_head
list;
struct task_struct
*task;
#ifdef CONFIG_DEBUG_MUTEXES
void
*magic;
#endif
};
转载请注明原文地址: https://ju.6miu.com/read-33050.html