diff options
author | Miles Bader <miles@gnu.org> | 1995-08-26 18:17:05 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-08-26 18:17:05 +0000 |
commit | 057ef3f74ac1a767557bf80ae6e94b0441a30f1e (patch) | |
tree | f86fab3c843250408b75ac0f96a7ee365b79b846 /libthreads | |
parent | 2202ad4a729482d1130c55733f4ce4f4d0bc0c52 (diff) |
(hurd_condition_wait_cancel): Name changed to `hurd_condition_wait'.
Diffstat (limited to 'libthreads')
-rw-r--r-- | libthreads/cancel-cond.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libthreads/cancel-cond.c b/libthreads/cancel-cond.c index 8a55fba4..317b7244 100644 --- a/libthreads/cancel-cond.c +++ b/libthreads/cancel-cond.c @@ -21,8 +21,9 @@ Cambridge, MA 02139, USA. */ #include <cthreads.h> #include "cthread_internals.h" +/* Just like condition_wait, but cancellable. Returns true if cancelled. */ int -hurd_condition_wait_cancel (condition_t c, mutex_t m) +hurd_condition_wait (condition_t c, mutex_t m) { /* This function will be called by hurd_thread_cancel while we are blocked in the condition_wait. We wake up all threads blocked on C, |