diff options
author | Jakub Jelinek <jakub@redhat.com> | 2006-08-25 06:45:16 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2006-08-25 06:45:16 +0000 |
commit | 44731509844946ccd2c2ee1de87901c171dadcc5 (patch) | |
tree | 83e065c21bd400661e9a594289ec3114cd10d051 /nptl/sysdeps/unix | |
parent | 4728cb644861ff8c58586702bf6815c50a1c0dd2 (diff) | |
download | glibc-44731509844946ccd2c2ee1de87901c171dadcc5.tar glibc-44731509844946ccd2c2ee1de87901c171dadcc5.tar.gz glibc-44731509844946ccd2c2ee1de87901c171dadcc5.tar.bz2 glibc-44731509844946ccd2c2ee1de87901c171dadcc5.zip |
Updated to fedora-glibc-20060825T0639
Diffstat (limited to 'nptl/sysdeps/unix')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c b/nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c index 4e60596f7d..4e0001af91 100644 --- a/nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c +++ b/nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc. +/* Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2002. @@ -57,3 +57,10 @@ __libc_pthread_init (ptr, reclaim, functions) return &__libc_multiple_threads; #endif } + + +libc_freeres_fn (freeres_libptread) +{ + if (__libc_pthread_functions.ptr_freeres != NULL) + __libc_pthread_functions.ptr_freeres (); +} |