repo.or.cz
/
glibc
/
pb-stable.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update from trunk.
[glibc/pb-stable.git]
/
elf
/
unload6mod3.c
blob
7b29e1d62656918c959df21ff307607dab0ca6f6
1
#include <dlfcn.h>
2
#include <stdio.h>
3
#include <unistd.h>
4
5
static void
*
h
;
6
7
static void
__attribute__
((
constructor
))
8
mod3init
(
void
)
9
{
10
h
=
dlopen
(
"unload6mod1.so"
,
RTLD_LAZY
);
11
if
(
h
==
NULL
)
12
{
13
puts
(
"dlopen unload6mod1.so failed"
);
14
fflush
(
stdout
);
15
_exit
(
1
);
16
}
17
}
18
19
static void
__attribute__
((
destructor
))
20
mod3fini
(
void
)
21
{
22
dlclose
(
h
);
23
}