mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
10 lines
136 B
C
10 lines
136 B
C
|
#include "tst-tls10.h"
|
||
|
|
||
|
__thread int mod15b_var __attribute__((tls_model("initial-exec")));
|
||
|
|
||
|
int
|
||
|
in_dso (void)
|
||
|
{
|
||
|
return mod15b_var;
|
||
|
}
|