diff options
author | Ingo Molnar <mingo@elte.hu> | 2006-06-27 02:54:48 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-27 17:32:46 -0700 |
commit | 6abdce7680e3e8436b3292b345d77b67d5ec9ea8 (patch) | |
tree | a242d780c2d1ea9214d33dcba54064d8fb2b500c /Documentation/robust-futexes.txt | |
parent | e2970f2fb6950183a34e8545faa093eb49d186e1 (diff) | |
download | linux-3.10-6abdce7680e3e8436b3292b345d77b67d5ec9ea8.tar.gz linux-3.10-6abdce7680e3e8436b3292b345d77b67d5ec9ea8.tar.bz2 linux-3.10-6abdce7680e3e8436b3292b345d77b67d5ec9ea8.zip |
[PATCH] pi-futex: robust futex docs fix
Fix typo in Documentation/robust-futexes.txt.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'Documentation/robust-futexes.txt')
-rw-r--r-- | Documentation/robust-futexes.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/robust-futexes.txt b/Documentation/robust-futexes.txt index df82d75245a..76e8064b8c3 100644 --- a/Documentation/robust-futexes.txt +++ b/Documentation/robust-futexes.txt @@ -95,7 +95,7 @@ comparison. If the thread has registered a list, then normally the list is empty. If the thread/process crashed or terminated in some incorrect way then the list might be non-empty: in this case the kernel carefully walks the list [not trusting it], and marks all locks that are owned by -this thread with the FUTEX_OWNER_DEAD bit, and wakes up one waiter (if +this thread with the FUTEX_OWNER_DIED bit, and wakes up one waiter (if any). The list is guaranteed to be private and per-thread at do_exit() time, |