Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Actually define pthread_mutex_consistent.
  • Loading branch information
Ulrich Drepper committed Jan 14, 2010
1 parent 346bc35 commit 402cd98
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 2 deletions.
2 changes: 2 additions & 0 deletions ChangeLog
@@ -1,5 +1,7 @@
2010-01-14 Ulrich Drepper <drepper@redhat.com>

* Versions.def: Add GLIBC_2.12 for libpthread.

[BZ #11126]
* malloc/malloc.c (malloc_info): Initialize malloc if not already
done. Handle empty bin lists.
Expand Down
1 change: 1 addition & 0 deletions Versions.def
Expand Up @@ -91,6 +91,7 @@ libpthread {
GLIBC_2.4
GLIBC_2.6
GLIBC_2.11
GLIBC_2.12
GLIBC_PRIVATE
}
libresolv {
Expand Down
5 changes: 5 additions & 0 deletions nptl/ChangeLog
@@ -1,3 +1,8 @@
2010-01-14 Ulrich Drepper <drepper@redhat.com>

* Versions: Add pthread_mutex_consistent for GLIBC_2.12.
* pthread_mutex_consistent.c: Define alias pthread_mutex_consistent.

2010-01-12 Ulrich Drepper <drepper@redhat.com>

* sysdeps/pthread/pthread.h: Cleanup. Fix up for XPG7.
Expand Down
4 changes: 4 additions & 0 deletions nptl/Versions
Expand Up @@ -244,6 +244,10 @@ libpthread {
pthread_sigqueue;
};

GLIBC_2.12 {
pthread_mutex_consistent;
};

GLIBC_PRIVATE {
__pthread_initialize_minimal;
__pthread_clock_gettime; __pthread_clock_settime;
Expand Down
5 changes: 3 additions & 2 deletions nptl/pthread_mutex_consistent.c
@@ -1,4 +1,4 @@
/* Copyright (C) 2005, 2006 Free Software Foundation, Inc.
/* Copyright (C) 2005, 2006, 2010 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@redhat.com>, 2005.
Expand All @@ -22,7 +22,7 @@


int
pthread_mutex_consistent_np (mutex)
pthread_mutex_consistent (mutex)
pthread_mutex_t *mutex;
{
/* Test whether this is a robust mutex with a dead owner. */
Expand All @@ -34,3 +34,4 @@ pthread_mutex_consistent_np (mutex)

return 0;
}
weak_alias (pthread_mutex_consistent, pthread_mutex_consistent_np)

0 comments on commit 402cd98

Please sign in to comment.