Searched refs:try_to_take_rt_mutex (Results 1 – 2 of 2) sorted by relevance
/linux-4.1.27/kernel/locking/ |
D | rtmutex.c | 753 static int try_to_take_rt_mutex(struct rt_mutex *lock, struct task_struct *task, in try_to_take_rt_mutex() function 1108 if (try_to_take_rt_mutex(lock, current, waiter)) in __rt_mutex_slowlock() 1177 if (try_to_take_rt_mutex(lock, current, NULL)) { in rt_mutex_slowlock() 1242 ret = try_to_take_rt_mutex(lock, current, NULL); in rt_mutex_slowtrylock() 1559 if (try_to_take_rt_mutex(lock, task, NULL)) { in rt_mutex_start_proxy_lock()
|
/linux-4.1.27/Documentation/locking/ |
D | rt-mutex-design.txt | 578 We then call try_to_take_rt_mutex. This is where the architecture that 582 try_to_take_rt_mutex is used every time the task tries to grab a mutex in the 625 in try_to_take_rt_mutex if the owner field points to another process.
|