mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-06 20:58:33 +01:00
7 lines
115 B
C
7 lines
115 B
C
extern __thread int tlsvar __attribute__((tls_model("initial-exec")));
|
|
|
|
void *
|
|
in_dso (void)
|
|
{
|
|
return &tlsvar;
|
|
}
|