Re: nptl 0.55
Jakub Jelinek <[email protected]>
| Newsgroups | gmane.comp.lib.phil |
|---|---|
| Message-ID | <[email protected]> |
On Wed, Jul 23, 2003 at 09:44:01AM -0400, Rhino wrote: > but where should __resp being declared/initialized ? (i'm trying to know > this code better) resolv/res_libc.c: __thread struct __res_state *__resp = &_res; nptl/pthread_create.c (start_thread): /* Initialize resolver state pointer. */ __resp = &pd->res; Jakub