167d5acc0d
2005-03-15 Jakub Jelinek <jakub@redhat.com> [BZ #786] * sysdeps/generic/dl-tls.c (_dl_next_tls_modid): Handle GL(dl_tls_static_nelem) == GL(dl_tls_max_dtv_idx). * elf/Makefile: Add rules to build and run tst-tls15. * elf/tst-tls15.c: New test. * elf/tst-tlsmod15a.c: New file. * elf/tst-tlsmod15b.c: New file. 2005-03-20 Ulrich Drepper <drepper@redhat.com> * elf/rtld.c (dl_main): Always call init_tls if we have audit modules.
18 lines
206 B
C
18 lines
206 B
C
#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
|