document iswspace and remove wrongly-included zwsp character
[musl] / src / thread / i386 / cancellation.s
1 .text
2 .global __pthread_register_cancel
3 .type   __pthread_register_cancel,@function
4 __pthread_register_cancel:
5         pushl %eax
6         call __pthread_do_register
7         popl %eax
8         ret
9
10 .global __pthread_unregister_cancel
11 .type   __pthread_unregister_cancel,@function
12 __pthread_unregister_cancel:
13         pushl %eax
14         call __pthread_do_unregister
15         popl %eax
16         ret
17
18 .global __pthread_unwind_next
19 .type   __pthread_unwind_next,@function
20 __pthread_unwind_next:
21         pushl %eax
22         call __pthread_do_unwind
23         popl %eax
24 __pthread_do_unwind:
25 __pthread_do_register:
26 __pthread_do_unregister:
27         ret
28
29 .weak __pthread_do_unwind
30 .weak __pthread_do_register
31 .weak __pthread_do_unregister
32 .type __pthread_do_unwind,@function
33 .type __pthread_do_register,@function
34 .type __pthread_do_unregister,@function