Changeset 0b05082 in mainline for uspace/lib/c/arch/ia32/include/libarch/tls.h
- Timestamp:
- 2018-07-18T18:56:16Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 40abf56
- Parents:
- 9b1baac
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-18 14:25:11)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-18 18:56:16)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/ia32/include/libarch/tls.h
r9b1baac r0b05082 38 38 #define CONFIG_TLS_VARIANT_2 39 39 40 #define ARCH_TP_OFFSET 0 41 40 42 #include <libc.h> 41 43 … … 46 48 } tcb_t; 47 49 48 static inline void __tcb_ set(tcb_t *tcb)50 static inline void __tcb_raw_set(void *tls) 49 51 { 50 asm volatile ("movl %0, %%gs:0" :: "r" (t cb));52 asm volatile ("movl %0, %%gs:0" :: "r" (tls)); 51 53 } 52 54 53 static inline tcb_t *__tcb_get(void)55 static inline void *__tcb_raw_get(void) 54 56 { 55 tcb_t *retval; 56 57 void *retval; 57 58 asm volatile ("movl %%gs:0, %0" : "=r" (retval)); 58 59 59 return retval; 60 60 }
Note:
See TracChangeset
for help on using the changeset viewer.