e81ef7609f466d4dc2fa1b068acbc7cb87d9eaa6
[musl] / src / internal / libc.h
1 #ifndef LIBC_H
2 #define LIBC_H
3
4 #include <stdlib.h>
5 #include <stdio.h>
6
7 struct __libc {
8         void (*lock)(volatile int *);
9         void (*cancelpt)(int);
10         int (*atexit)(void (*)(void));
11         void (*fini)(void);
12         void (*ldso_fini)(void);
13         int *(*errno_location)(void);
14         volatile int threads_minus_1;
15         int (*rsyscall)(int, long, long, long, long, long, long);
16         void (**tsd_keys)(void *);
17         void (*fork_handler)(int);
18 };
19
20
21 #if 100*__GNUC__+__GNUC_MINOR__ >= 303 || defined(__PCC__) || defined(__TINYC__)
22 extern struct __libc __libc __attribute__((visibility("hidden")));
23 #define libc __libc
24
25 #elif !defined(__PIC__)
26 extern struct __libc __libc;
27 #define libc __libc
28
29 #else
30 #define USE_LIBC_ACCESSOR
31 extern struct __libc *__libc_loc(void) __attribute__((const));
32 #define libc (*__libc_loc())
33
34 #endif
35
36
37 /* Designed to avoid any overhead in non-threaded processes */
38 void __lock(volatile int *);
39 #define LOCK(x) (libc.threads_minus_1 ? (__lock(x),1) : ((void)(x),1))
40 #define UNLOCK(x) (*(x)=0)
41 #define CANCELPT(x) (libc.cancelpt ? libc.cancelpt((x)),0 : (void)(x),0)
42 #define CANCELPT_BEGIN CANCELPT(1)
43 #define CANCELPT_END CANCELPT(0)
44
45 extern char **__environ;
46 #define environ __environ
47
48 #undef weak_alias
49 #define weak_alias(old, new) \
50         extern __typeof(old) new __attribute__((weak, alias(#old)))
51
52 #undef LFS64_2
53 //#define LFS64_2(x, y) weak_alias(x, y)
54 #define LFS64_2(x, y) extern __typeof(x) y
55
56 #undef LFS64
57 #define LFS64(x) LFS64_2(x, x##64)
58
59 #endif