0ea0aaca4253d362972148e1e7f30ef92fa02b80
[musl] / arch / i386 / pthread_arch.h
1 static inline struct pthread *__pthread_self()
2 {
3         struct pthread *self;
4         __asm__ __volatile__ ("movl %%gs:0,%0" : "=r" (self) );
5         return self;
6 }
7
8 #define CANCEL_REG_SP 7
9 #define CANCEL_REG_IP 14