Home
last modified time | relevance | path

Searched refs:__rt_mutex_lock_common (Results 1 – 1 of 1) sorted by relevance

/linux/kernel/locking/
H A Drtmutex_api.c40 static __always_inline int __rt_mutex_lock_common(struct rt_mutex *lock, in __rt_mutex_lock_common() function
71 if (__rt_mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, NULL, subclass) == 0) in rt_mutex_lock_nested()
74 * The code below is never reached because __rt_mutex_lock_common() only in _rt_mutex_lock_nest_lock()
84 if (__rt_mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, nest_lock, 0) == 0)
87 * The code below is never reached because __rt_mutex_lock_common() only in rt_mutex_lock()
104 if (__rt_mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, NULL, 0) == 0) in rt_mutex_lock_interruptible()
107 * The code below is never reached because __rt_mutex_lock_common() only
127 return __rt_mutex_lock_common(lock, TASK_INTERRUPTIBLE, NULL, 0);
142 return __rt_mutex_lock_common(lock, TASK_KILLABLE, NULL, 0); in rt_mutex_trylock()