summaryrefslogtreecommitdiff
path: root/viengoos/mutex.h
diff options
context:
space:
mode:
authorneal <neal>2008-05-24 13:40:03 +0000
committerneal <neal>2008-05-24 13:40:03 +0000
commit7e6fc36366e706cafa87f652ae5d6ce63c7a80b3 (patch)
tree3fb10ea6ef512937a20f1aa0e385911d4218f774 /viengoos/mutex.h
parent42bc9dee8b222d63ed863a6ff98ed2ce991a9a6b (diff)
2008-05-24 Neal H. Walfield <neal@gnu.org>
* mutex.h (ss_mutex_lock): Wait for any local thread.
Diffstat (limited to 'viengoos/mutex.h')
-rw-r--r--viengoos/mutex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/viengoos/mutex.h b/viengoos/mutex.h
index 595658f..70d83b8 100644
--- a/viengoos/mutex.h
+++ b/viengoos/mutex.h
@@ -48,7 +48,7 @@ ss_mutex_lock (__const char *caller, int line, ss_mutex_t *lock)
ss_lock_trace_dump (lock);
assert (owner != l4_myself ());
- __ss_lock_wait (owner);
+ __ss_lock_wait (l4_anylocalthread);
}
}