repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Optimize x86-64 pthread_cond_wait.
[glibc.git]
/
elf
/
unload7mod1.c
blob
7435adce2c0fae6944df3da704c7e412feccacd3
1
#include <dlfcn.h>
2
#include <stdio.h>
3
4
int
5
foo
(
int
i
)
6
{
7
if
(
dlsym
(
RTLD_DEFAULT
,
"unload7_nonexistent_symbol"
) ==
NULL
)
8
return
1
;
9
puts
(
"dlsym returned non-NULL"
);
10
return
0
;
11
}