1MUTEX_UNLOCK(9) Mutex API reference MUTEX_UNLOCK(9)
2
3
4
6 mutex_unlock - release the mutex
7
9 void __sched mutex_unlock(struct mutex * lock);
10
12 lock
13 the mutex to be released
14
16 Unlock a mutex that has been locked by this task previously.
17
18 This function must not be used in interrupt context. Unlocking of a not
19 locked mutex is not allowed.
20
21 This function is similar to (but not equivalent to) up.
22
24 Rusty Russell <rusty@rustcorp.com.au>
25 Author.
26
28Kernel Hackers Manual 3.10 June 2019 MUTEX_UNLOCK(9)