X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Finternal%2Flibc.h;h=8a84be0b90f144ccc661921c1e1553f7119d72fe;hb=73d310e1d2b76cd14b9913bbc3d8e75be91be5a6;hp=e353f36354ad521f38fd6bd62e9703e789cfaca7;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01;p=musl diff --git a/src/internal/libc.h b/src/internal/libc.h index e353f363..8a84be0b 100644 --- a/src/internal/libc.h +++ b/src/internal/libc.h @@ -4,8 +4,7 @@ #include #include -#define libc __libc -extern struct libc { +struct __libc { void (*lock)(volatile int *); void (*cancelpt)(int); int (*atexit)(void (*)(void)); @@ -15,7 +14,16 @@ extern struct libc { volatile int threads_minus_1; int (*rsyscall)(int, long, long, long, long, long, long); void (**tsd_keys)(void *); -} libc; + void (*fork_handler)(int); +}; + +#ifdef __PIC__ +extern struct __libc *__libc_loc(void) __attribute__((const)); +#define libc (*__libc_loc()) +#else +extern struct __libc __libc; +#define libc __libc +#endif /* Designed to avoid any overhead in non-threaded processes */