| Index: fusl/arch/i386/pthread_arch.h
|
| diff --git a/fusl/arch/i386/pthread_arch.h b/fusl/arch/i386/pthread_arch.h
|
| index 7f38a56289032a3026a1580a798118e7214ae3ac..9c10e104fd8a133a59625dc1c0ade9373aa061a0 100644
|
| --- a/fusl/arch/i386/pthread_arch.h
|
| +++ b/fusl/arch/i386/pthread_arch.h
|
| @@ -1,8 +1,7 @@
|
| -static inline struct pthread *__pthread_self()
|
| -{
|
| - struct pthread *self;
|
| - __asm__ __volatile__ ("movl %%gs:0,%0" : "=r" (self) );
|
| - return self;
|
| +static inline struct pthread* __pthread_self() {
|
| + struct pthread* self;
|
| + __asm__ __volatile__("movl %%gs:0,%0" : "=r"(self));
|
| + return self;
|
| }
|
|
|
| #define TP_ADJ(p) (p)
|
|
|