summaryrefslogtreecommitdiff
path: root/libc/misc/pthread/tsd.c
blob: 434938d9798b6464b16c04f799f7e576a2e6871f (plain)
1
2
3
4
5
6
7
8
9
10
11
/* libpthread sets _dl_error_catch_tsd to point to this function.
   We define it here instead of in libpthread so t here instead of in libpthread so that it doesn't
   need to have a TLS segment of its own just for this one pointer.  */

void ** __attribute__ ((const))
__libc_dl_error_tsd (void)
{
  static __thread void *data __attribute__ ((tls_model ("initial-exec")));
  return &data;
}