document iswspace and remove wrongly-included zwsp character
[musl] / arch / i386 / bits / pthread.h
1 struct __ptcb {
2         long __jb[7];
3         int __dummy;
4         struct __ptcb *__next;
5         void *__ptrs[3];
6 };
7
8 static inline void __pthread_register_cancel_2(struct __ptcb *__cb)
9 {
10         __asm__ __volatile__( "call __pthread_register_cancel" : : "a"(__cb) : "ecx", "edx", "memory" );
11 }
12
13 static inline void __pthread_unregister_cancel_2(struct __ptcb *__cb)
14 {
15         __asm__ __volatile__( "call __pthread_unregister_cancel" : : "a"(__cb) : "ecx", "edx", "memory" );
16 }
17
18 static inline void __pthread_unwind_next_2(struct __ptcb *__cb)
19 {
20         __asm__ __volatile__( "call __pthread_unwind_next" : : "a"(__cb) : "ecx", "edx", "memory" );
21 }
22
23 #define __pthread_register_cancel __pthread_register_cancel_2
24 #define __pthread_unregister_cancel __pthread_unregister_cancel_2
25 #define __pthread_unwind_next __pthread_unwind_next_2