Searched refs:libinfo_data (Results 1 - 1 of 1) sorted by relevance

/macosx-10.10.1/Libinfo-459/lookup.subproj/
H A Dthread_data.c96 struct _li_data_s *libinfo_data; local
104 /* Check if this thread already created libinfo_data */
105 libinfo_data = pthread_getspecific(_info_key);
106 if (libinfo_data != NULL) return libinfo_data;
108 libinfo_data = (struct _li_data_s *)calloc(1, sizeof(struct _li_data_s));
109 if (libinfo_data == NULL) return NULL;
111 pthread_setspecific(_info_key, libinfo_data);
112 return libinfo_data;
118 struct _li_data_s *libinfo_data; local
[all...]

Completed in 166 milliseconds