Changeset e7b7be3f in mainline for uspace/libc/arch/ia64/include/thread.h
- Timestamp:
- 2007-01-22T13:10:08Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0f3fc9b
- Parents:
- 62c63fc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/libc/arch/ia64/include/thread.h
r62c63fc re7b7be3f 46 46 static inline void __tcb_set(tcb_t *tcb) 47 47 { 48 __asm__volatile ("mov r13 = %0\n" : : "r" (tcb) : "r13");48 asm volatile ("mov r13 = %0\n" : : "r" (tcb) : "r13"); 49 49 } 50 50 … … 53 53 void *retval; 54 54 55 __asm__volatile ("mov %0 = r13\n" : "=r" (retval));55 asm volatile ("mov %0 = r13\n" : "=r" (retval)); 56 56 57 57 return retval;
Note:
See TracChangeset
for help on using the changeset viewer.