repo.or.cz
/
dbstuff.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
added fefe's blog reader
[dbstuff.git]
/
pthread.c
blob
5e5d93f1013ca041a92e7715801ee8c2911c5570
1
#include <pthread.h>
2
3
/* glibc bug? Segfault on wrong pid. */
4
/* Is known to U. Drapper, but won't be fixed. */
5
int
main
(
void
)
6
{
7
pthread_kill
(-
1
);
8
return
0
;
9
}
10