1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
1999-07-09  Ulrich Drepper  <drepper@cygnus.com>

	* stdio-common/vfprintf.c (buffered_vfprintf): Add locking.
This commit is contained in:
Ulrich Drepper
1999-07-09 22:22:21 +00:00
parent fbb802fc7d
commit 5ef2d37b33
4 changed files with 20 additions and 4 deletions

View File

@ -1,3 +1,8 @@
1999-07-09 Ulrich Drepper <drepper@cygnus.com>
* oldsemaphore.c (sem_compare_and_swap): Fix use of compare and
swap function.
1999-07-09 Cristian Gafton <gafton@redhat.com>
* Makefile (libpthread-routines): Add oldsemaphore routine.

View File

@ -37,7 +37,7 @@ typedef struct {
static inline int sem_compare_and_swap(old_sem_t *sem, long oldval, long newval)
{
return __pthread_compare_and_swap(&sem->sem_status, oldval, newval, &sem->sem_spinlock);
return compare_and_swap(&sem->sem_status, oldval, newval, &sem->sem_spinlock);
}
/* The state of a semaphore is represented by a long int encoding
@ -212,4 +212,3 @@ symbol_version (__old_sem_post, sem_post, GLIBC_2.0);
symbol_version (__old_sem_getvalue, sem_getvalue, GLIBC_2.0);
symbol_version (__old_sem_destroy, sem_destroy, GLIBC_2.0);
#endif