mirror of
https://sourceware.org/git/glibc.git
synced 2025-09-01 05:02:03 +03:00
10 lines
133 B
C
10 lines
133 B
C
#include <tls.h>
|
|
|
|
extern __thread int tlsvar __attribute__((tls_model("initial-exec")));
|
|
|
|
void *
|
|
in_dso (void)
|
|
{
|
|
return &tlsvar;
|
|
}
|