blob: 6e55a832a4b5e6d3db74ff8dbe03197d4aeb3617 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#if defined(__i386__)
# define SYM(x) _##x
#else
# define SYM(x) x
#endif
/* these should all be too low to ever be valid addresses */
.globl SYM(__pthread_recursive_mutex_initializer_np)
.set __pthread_recursive_mutex_initializer_np, 18
.globl SYM(__pthread_normal_mutex_initializer_np)
.set __pthread_normal_mutex_initializer_np, 19
.globl SYM(__pthread_errorcheck_mutex_initializer_np)
.set __pthread_errorcheck_mutex_initializer_np, 20
.globl SYM(__pthread_cond_initializer)
.set __pthread_cond_initializer, 21
.globl SYM(__pthread_rwlock_initializer)
.set __pthread_rwlock_initializer, 22
|