diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-09-28 23:11:33 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-09-28 23:11:33 +0000 |
commit | c0ac34e4472e5f3b5fdf1557480e2b2c1cc72aed (patch) | |
tree | 428164e4a1b3ba35e5469c2d21aeb5c84afa8003 /elf/soinit.c | |
parent | 8cab1d380a9a9743ed825533f389e0edb7b777d0 (diff) | |
download | glibc-c0ac34e4472e5f3b5fdf1557480e2b2c1cc72aed.tar glibc-c0ac34e4472e5f3b5fdf1557480e2b2c1cc72aed.tar.gz glibc-c0ac34e4472e5f3b5fdf1557480e2b2c1cc72aed.tar.bz2 glibc-c0ac34e4472e5f3b5fdf1557480e2b2c1cc72aed.zip |
Update.
* mutex.c (__pthread_mutex_unlock): For PTHREAD_MUTEX_RECURSIVE_NP
test for owner first.
Patch by Kaz Kylheku <kaz@ashi.footprints.net>.
Diffstat (limited to 'elf/soinit.c')
-rw-r--r-- | elf/soinit.c | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/elf/soinit.c b/elf/soinit.c index 3cb5584f6c..4e2a149d86 100644 --- a/elf/soinit.c +++ b/elf/soinit.c @@ -3,6 +3,10 @@ the `.ctors' and `.dtors' sections so the lists are terminated, and calling those lists of functions. */ +# ifdef HAVE_DWARF2_UNWIND_INFO_STATIC +# include <gccframe.h> +# endif + static void (*const __CTOR_LIST__[1]) (void) __attribute__ ((section (".ctors"))) = { (void (*) (void)) -1 }; @@ -22,16 +26,6 @@ static char __EH_FRAME_BEGIN__[] __attribute__ ((section (".eh_frame"))) = { }; # ifdef HAVE_DWARF2_UNWIND_INFO_STATIC -/* This must match what's in frame.h in gcc. How can one do that? */ -struct object -{ - void *pc_begin; - void *pc_end; - void *fde_begin; - void *fde_array; - __SIZE_TYPE__ count; - struct object *next; -}; extern void __register_frame_info (const void *, struct object *); extern void __deregister_frame_info (const void *); # else |