blob: 529f8bb6608991dbc0ed92ac029ed311627910f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#include <stdio.h>
#include <pthread.h>
void __attribute__((constructor)) libtest2_ctor(void)
{
printf("libtest2: constructor!\n");
}
void __attribute__((destructor)) libtest2_dtor(void)
{
printf("libtest2: destructor!\n");
}
void function1(void)
{
printf("libtest2: I am function1!\n");
}
void __attribute__((weak)) function2(void)
{
printf("libtest2: I am weak function2!\n");
}
int libtest2_func(const char *s)
{
printf( "libtest2: function1 = %p\n"
"libtest2: function2 = %p\n",
function1, function2);
function1();
function2();
return 0;
}
|