Skip to content
Permalink
167d5acc0d
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
17 lines (15 sloc) 206 Bytes
#include "tst-tls10.h"
#ifdef USE_TLS__THREAD
__thread int mod15b_var __attribute__((tls_model("initial-exec")));
int
in_dso (void)
{
return mod15b_var;
}
#else
int
in_dso (void)
{
return 0;
}
#endif