2 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
3 * Use is subject to license terms.
7 #include <port_before.h>
15 #include <resolv_mt.h>
17 #include <port_after.h>
20 static pthread_key_t key
;
21 static int mt_key_initialized
= 0;
23 static int __res_init_ctx(void);
24 static void __res_destroy_ctx(void *);
26 #if defined(sun) && !defined(__GNUC__)
27 #pragma init (_mtctxres_init)
31 static mtctxres_t sharedctx
;
35 * Initialize the TSD key. By doing this at library load time, we're
36 * implicitly running without interference from other threads, so there's
37 * no need for locking.
40 _mtctxres_init(void) {
41 int pthread_keycreate_ret
;
43 pthread_keycreate_ret
= pthread_key_create(&key
, __res_destroy_ctx
);
44 if (pthread_keycreate_ret
== 0)
45 mt_key_initialized
= 1;
50 * To support binaries that used the private MT-safe interface in
51 * Solaris 8, we still need to provide the __res_enable_mt()
52 * and __res_disable_mt() entry points. They're do-nothing routines.
55 __res_enable_mt(void) {
60 __res_disable_mt(void) {
66 __res_init_ctx(void) {
72 if (pthread_getspecific(key
) != 0) {
77 if ((mt
= malloc(sizeof (mtctxres_t
))) == 0) {
82 memset(mt
, 0, sizeof (mtctxres_t
));
84 if ((ret
= pthread_setspecific(key
, mt
)) != 0) {
94 __res_destroy_ctx(void *value
) {
96 mtctxres_t
*mt
= (mtctxres_t
*)value
;
109 * This if clause should only be executed if we are linking
110 * statically. When linked dynamically _mtctxres_init() should
111 * be called at binding time due the #pragma above.
113 if (!mt_key_initialized
) {
114 static pthread_mutex_t keylock
= PTHREAD_MUTEX_INITIALIZER
;
115 if (pthread_mutex_lock(&keylock
) == 0) {
117 (void) pthread_mutex_unlock(&keylock
);
122 * If we have already been called in this thread return the existing
123 * context. Otherwise recreat a new context and return it. If
124 * that fails return a global context.
126 if (mt_key_initialized
) {
127 if (((mt
= pthread_getspecific(key
)) != 0) ||
128 (__res_init_ctx() == 0 &&
129 (mt
= pthread_getspecific(key
)) != 0)) {