diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-01-05 10:55:15 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-01-05 10:55:15 +0000 |
commit | 73e9ae887fab0918165e49d783328c891c1b1bdb (patch) | |
tree | f20298d0dd2e59958be2e3fcd1cc708ae8c3bece /nptl/cleanup_defer.c | |
parent | a7f7b879fbe6fb58b670ad41d2b6e40f14730cb8 (diff) | |
download | glibc-73e9ae887fab0918165e49d783328c891c1b1bdb.tar.gz glibc-73e9ae887fab0918165e49d783328c891c1b1bdb.tar.xz glibc-73e9ae887fab0918165e49d783328c891c1b1bdb.zip |
Update.
2003-01-04 Franz Sirl <Franz.Sirl-kernel@lauterbach.com> * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: New file. * sysdeps/unix/sysv/linux/powerpc/powerpc32/Makefile: New file.
Diffstat (limited to 'nptl/cleanup_defer.c')
-rw-r--r-- | nptl/cleanup_defer.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nptl/cleanup_defer.c b/nptl/cleanup_defer.c index 192fea57c8..084216e44b 100644 --- a/nptl/cleanup_defer.c +++ b/nptl/cleanup_defer.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002 Free Software Foundation, Inc. +/* Copyright (C) 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2002. @@ -54,7 +54,7 @@ _pthread_cleanup_push_defer (buffer, routine, arg) THREAD_SETMEM (self, cleanup, buffer); } - +strong_alias (_pthread_cleanup_push_defer, __pthread_cleanup_push_defer) void _pthread_cleanup_pop_restore (buffer, execute) @@ -84,3 +84,4 @@ _pthread_cleanup_pop_restore (buffer, execute) if (execute) buffer->__routine (buffer->__arg); } +strong_alias (_pthread_cleanup_pop_restore, __pthread_cleanup_pop_restore) |