diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-05-30 13:17:44 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-05-30 13:17:44 +0000 |
commit | cd4a3339770a244c6af22e8353423c71d13b8091 (patch) | |
tree | fb0c79276363b5094dfdcd0f6f1caf7395b694e8 /libc/misc/dirent/closedir.c | |
parent | e0892f680252571830a3a811d2f9805f318c979e (diff) |
Fixup totally broken locking code... No storage for the mutex,
wrong ifdef macro..
-Erik
Diffstat (limited to 'libc/misc/dirent/closedir.c')
-rw-r--r-- | libc/misc/dirent/closedir.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libc/misc/dirent/closedir.c b/libc/misc/dirent/closedir.c index c9486ac56..0e176deb7 100644 --- a/libc/misc/dirent/closedir.c +++ b/libc/misc/dirent/closedir.c @@ -19,13 +19,13 @@ int closedir(DIR * dir) __set_errno(EBADF); return -1; } -#ifdef _POSIX_THREADS - pthread_mutex_lock(dir->dd_lock); +#ifdef __UCLIBC_HAS_THREADS__ + pthread_mutex_lock(&(dir->dd_lock)); #endif fd = dir->dd_fd; dir->dd_fd = -1; -#ifdef _POSIX_THREADS - pthread_mutex_unlock(dir->dd_lock); +#ifdef __UCLIBC_HAS_THREADS__ + pthread_mutex_unlock(&(dir->dd_lock)); #endif free(dir->dd_buf); free(dir); |