summaryrefslogtreecommitdiff
path: root/libpthread
diff options
context:
space:
mode:
authorManuel Novoa III <mjn3@codepoet.org>2002-03-12 01:18:50 +0000
committerManuel Novoa III <mjn3@codepoet.org>2002-03-12 01:18:50 +0000
commit03e039820dc5092e27e81f3671652f25da7f25f1 (patch)
tree37bddad6951b8a6aa5d75184353705f672217812 /libpthread
parentff3e48d94097ed02480bb0df538620b221ccd72f (diff)
Swap in the new stdio code.
Diffstat (limited to 'libpthread')
-rw-r--r--libpthread/linuxthreads/lockfile.c47
1 files changed, 10 insertions, 37 deletions
diff --git a/libpthread/linuxthreads/lockfile.c b/libpthread/linuxthreads/lockfile.c
index 18c3fed8c..dbb44bb31 100644
--- a/libpthread/linuxthreads/lockfile.c
+++ b/libpthread/linuxthreads/lockfile.c
@@ -17,72 +17,45 @@
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
-#include <bits/libc-lock.h>
+/* #include <bits/libc-lock.h> */
#include <stdio.h>
#include <pthread.h>
-#ifdef USE_IN_LIBIO
-#include "../libio/libioP.h"
-#endif
-
void
__flockfile (FILE *stream)
{
-#ifdef USE_IN_LIBIO
- __pthread_mutex_lock (stream->_lock);
-#else
-#endif
+ pthread_mutex_lock(&stream->lock);
}
-#ifdef USE_IN_LIBIO
-#undef _IO_flockfile
-strong_alias (__flockfile, _IO_flockfile)
-#endif
weak_alias (__flockfile, flockfile);
void
__funlockfile (FILE *stream)
{
-#ifdef USE_IN_LIBIO
- __pthread_mutex_unlock (stream->_lock);
-#else
-#endif
+ pthread_mutex_unlock(&stream->lock);
}
-#ifdef USE_IN_LIBIO
-#undef _IO_funlockfile
-strong_alias (__funlockfile, _IO_funlockfile)
-#endif
weak_alias (__funlockfile, funlockfile);
int
__ftrylockfile (FILE *stream)
{
-#ifdef USE_IN_LIBIO
- return __pthread_mutex_trylock (stream->_lock);
-#else
- return 0;
-#endif
+ return pthread_mutex_trylock(&stream->lock);
}
-#ifdef USE_IN_LIBIO
-strong_alias (__ftrylockfile, _IO_ftrylockfile)
-#endif
weak_alias (__ftrylockfile, ftrylockfile);
void
__fresetlockfiles (void)
{
-#ifdef USE_IN_LIBIO
- _IO_FILE *fp;
+ FILE *fp;
pthread_mutexattr_t attr;
- __pthread_mutexattr_init (&attr);
- __pthread_mutexattr_settype (&attr, PTHREAD_MUTEX_RECURSIVE_NP);
+ pthread_mutexattr_init(&attr);
+ pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE_NP);
- for (fp = _IO_list_all; fp != NULL; fp = fp->_chain)
- __pthread_mutex_init (fp->_lock, &attr);
+ for (fp = _stdio_openlist; fp != NULL; fp = fp->nextopen)
+ pthread_mutex_init(&fp->lock, &attr);
- __pthread_mutexattr_destroy (&attr);
-#endif
+ pthread_mutexattr_destroy(&attr);
}