Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Documentation: Add nested versions of mutex locks to docs

Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>
Signed-off-by: Adrian Bunk <bunk@kernel.org>

authored by

Robert P. J. Day and committed by
Adrian Bunk
343b9019 cfd348fd

+3 -1
+3 -1
Documentation/mutex-design.txt
··· 133 133 int mutex_trylock(struct mutex *lock); 134 134 void mutex_unlock(struct mutex *lock); 135 135 int mutex_is_locked(struct mutex *lock); 136 - 136 + void mutex_lock_nested(struct mutex *lock, unsigned int subclass); 137 + int mutex_lock_interruptible_nested(struct mutex *lock, 138 + unsigned int subclass);