From: Robert P. J. Day Date: Fri, 19 Oct 2007 22:15:26 +0000 (+0200) Subject: Documentation: Add nested versions of mutex locks to docs X-Git-Tag: v2.6.24-rc1~124^2~52 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=343b9019808eb4df2a1b4429a8b95d21bf45a9e9;p=~shefty%2Frdma-dev.git Documentation: Add nested versions of mutex locks to docs Signed-off-by: Robert P. J. Day Signed-off-by: Adrian Bunk --- diff --git a/Documentation/mutex-design.txt b/Documentation/mutex-design.txt index 51f935191ae..aa60d1f627e 100644 --- a/Documentation/mutex-design.txt +++ b/Documentation/mutex-design.txt @@ -133,4 +133,6 @@ the APIs of 'struct mutex' have been streamlined: int mutex_trylock(struct mutex *lock); void mutex_unlock(struct mutex *lock); int mutex_is_locked(struct mutex *lock); - + void mutex_lock_nested(struct mutex *lock, unsigned int subclass); + int mutex_lock_interruptible_nested(struct mutex *lock, + unsigned int subclass);