10 lines
117 B
C
10 lines
117 B
C
|
#include <tls.h>
|
||
|
|
||
|
__thread int a[2] __attribute__ ((tls_model ("initial-exec")));
|
||
|
|
||
|
int
|
||
|
foo (void)
|
||
|
{
|
||
|
return a[0];
|
||
|
}
|