1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

Set constructor/destructor priority to 1000

This commit is contained in:
H.J. Lu
2012-11-16 07:40:38 -08:00
parent 02665652d7
commit bcbf9830b7
3 changed files with 14 additions and 4 deletions

View File

@ -1,6 +1,7 @@
#include <unistd.h>
static void init (void) __attribute__ ((constructor));
/* Give init non-default priority so that it runs before init_array. */
static void init (void) __attribute__ ((constructor (1000)));
static void
init (void)
@ -8,7 +9,8 @@ init (void)
write (STDOUT_FILENO, "DSO init\n", 9);
}
static void fini (void) __attribute__ ((destructor));
/* Give fini the same priority as init. */
static void fini (void) __attribute__ ((destructor (1000)));
static void
fini (void)