Lines Matching defs:mt
46 * To support binaries that used the private MT-safe interface in
64 mtctxres_t *mt;
73 if ((mt = malloc(sizeof (mtctxres_t))) == 0) {
78 memset(mt, 0, sizeof (mtctxres_t));
80 if ((ret = pthread_setspecific(key, mt)) != 0) {
81 free(mt);
92 mtctxres_t *mt = (mtctxres_t *)value;
94 if (mt != 0)
95 free(mt);
102 mtctxres_t *mt;
123 if (((mt = pthread_getspecific(key)) != 0) ||
125 (mt = pthread_getspecific(key)) != 0)) {
126 return (mt);