summaryrefslogtreecommitdiff
path: root/libc/misc/dirent/readdir_r.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-05-30 13:17:44 +0000
committerEric Andersen <andersen@codepoet.org>2002-05-30 13:17:44 +0000
commitcd4a3339770a244c6af22e8353423c71d13b8091 (patch)
treefb0c79276363b5094dfdcd0f6f1caf7395b694e8 /libc/misc/dirent/readdir_r.c
parente0892f680252571830a3a811d2f9805f318c979e (diff)
Fixup totally broken locking code... No storage for the mutex,
wrong ifdef macro.. -Erik
Diffstat (limited to 'libc/misc/dirent/readdir_r.c')
-rw-r--r--libc/misc/dirent/readdir_r.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libc/misc/dirent/readdir_r.c b/libc/misc/dirent/readdir_r.c
index 9d9db0dee..423dcb810 100644
--- a/libc/misc/dirent/readdir_r.c
+++ b/libc/misc/dirent/readdir_r.c
@@ -20,8 +20,8 @@ int readdir_r(DIR *dir, struct dirent *entry, struct dirent **result)
}
de = NULL;
-#ifdef _POSIX_THREADS
- pthread_mutex_lock(dir->dd_lock);
+#ifdef __UCLIBC_HAS_THREADS__
+ pthread_mutex_lock(&(dir->dd_lock));
#endif
do {
@@ -56,8 +56,8 @@ int readdir_r(DIR *dir, struct dirent *entry, struct dirent **result)
all_done:
-#ifdef _POSIX_THREADS
- pthread_mutex_unlock(dir->dd_lock);
+#ifdef __UCLIBC_HAS_THREADS__
+ pthread_mutex_unlock(&(dir->dd_lock));
#endif
return((de != NULL)? 0 : ret);
}