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
Tweak realloc/MREMAP comment to be more accurate.
[glibc.git]
/
nptl
/
tst-locale2.c
blob
a238209f87e903681b3cb98d93a717bd5d513f11
1
/* Test that the thread-local locale works right in the main thread
2
when statically linked. */
3
4
#include
"../argp/tst-argp1.c"
5
6
#include <pthread.h>
7
8
/* This is never called, just here to get pthreads linked in. */
9
void
*
10
useless
(
void
*
a
)
11
{
12
pthread_t th
;
13
pthread_create
(&
th
,
0
,
useless
,
a
);
14
return
NULL
;
15
}