Changeset 6419c6e in mainline for uspace/lib/c/arch/ppc32/include/libarch/tls.h
- Timestamp:
- 2018-07-06T20:06:58Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e89a06a
- Parents:
- da680b4b
- git-author:
- Jakub Jermar <jakub@…> (2018-07-06 20:05:27)
- git-committer:
- Jakub Jermar <jakub@…> (2018-07-06 20:06:58)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/ppc32/include/libarch/tls.h
rda680b4b r6419c6e 46 46 static inline void __tcb_set(tcb_t *tcb) 47 47 { 48 void *tp =tcb;48 char *tp = (char *) tcb; 49 49 tp += PPC_TP_OFFSET + sizeof(tcb_t); 50 50 … … 58 58 static inline tcb_t *__tcb_get(void) 59 59 { 60 void*retval;60 char *retval; 61 61 62 62 asm volatile (
Note:
See TracChangeset
for help on using the changeset viewer.