From 968dad0ab1f367a087ff4ad503b511dd0c565adc Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 19 Jan 2011 15:32:35 -0500 Subject: Fix ordering of DSO constructors and destructors. --- elf/tst-initorderb1.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 elf/tst-initorderb1.c (limited to 'elf/tst-initorderb1.c') 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 + +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" ); +} -- cgit v1.2.3