diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-01-19 15:32:35 -0500 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-01-19 16:00:11 -0500 |
commit | 968dad0ab1f367a087ff4ad503b511dd0c565adc (patch) | |
tree | d13459628d20f7c091850755ebc120fb81156ca3 /elf/tst-initorderb1.c | |
parent | 86e9235918a715095a1f5bb1c1db28fae7fca22b (diff) | |
download | glibc-968dad0ab1f367a087ff4ad503b511dd0c565adc.tar.gz glibc-968dad0ab1f367a087ff4ad503b511dd0c565adc.tar.xz glibc-968dad0ab1f367a087ff4ad503b511dd0c565adc.zip |
Fix ordering of DSO constructors and destructors.
Diffstat (limited to 'elf/tst-initorderb1.c')
-rw-r--r-- | elf/tst-initorderb1.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/elf/tst-initorderb1.c b/elf/tst-initorderb1.c new file mode 100644 index 0000000000..993ea3fe30 --- /dev/null +++ b/elf/tst-initorderb1.c @@ -0,0 +1,16 @@ +#include <stdio.h> + +extern void start_b1( void ) __attribute__((constructor)); +extern void finish_b1( void ) __attribute__((destructor)); + +void +start_b1( void ) +{ + printf( "start_b1\n" ); +} + +void +finish_b1( void ) +{ + printf( "finish_b1\n" ); +} |