summaryrefslogtreecommitdiff
path: root/console
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2012-11-25 00:05:21 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2012-11-27 23:00:09 +0100
commit1d767442294df64b9746f02cd6fcf320da257b1f (patch)
tree545058ea2a191721820a41b5c8b6101bc1f65064 /console
parent1de0643c9218db536f5b2e294bbfa653c77438e4 (diff)
Complete switch from cthreads to pthreads
* console/input.c: Switch comment from cthreads to pthreads. * libnetfs/file-get-fs-options.c: Likewise * libnetfs/fsys-get-options.c: Likewise * libnetfs/fsys-set-options.c: Likewise * libnetfs/shutdown.c: Likewise * libpager/lock-object.c: Likewise * nfsd/cache.c: Set back replycachelock as static variable. * term/hurdio.c: Use pthread_hurd_cond_wait_np instead of pthread_cond_wait.
Diffstat (limited to 'console')
-rw-r--r--console/input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/console/input.c b/console/input.c
index 7ebac302..91f21c15 100644
--- a/console/input.c
+++ b/console/input.c
@@ -181,7 +181,7 @@ ssize_t input_enqueue (input_t input, int nonblock, char *data,
input->full = 1;
if (was_empty)
pthread_cond_broadcast (&input->data_available);
- /* Prevent calling condition_broadcast again if nonblock. */
+ /* Prevent calling pthread_cond_broadcast again if nonblock. */
was_empty = 0;
}
else