- Timestamp:
- 2009-05-18T21:02:09Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 60866a3
- Parents:
- 1090b8c
- Location:
- kernel/arch
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/include/atomic.h
r1090b8c rc00589d 116 116 asm volatile ( 117 117 "0:\n" 118 #ifdef CONFIG_HT119 118 "pause\n" 120 #endif121 119 "mov %[count], %[tmp]\n" 122 120 "testq %[tmp], %[tmp]\n" -
kernel/arch/ia32/include/atomic.h
r1090b8c rc00589d 115 115 asm volatile ( 116 116 "0:\n" 117 #ifdef CONFIG_HT118 117 "pause\n" /* Pentium 4's HT love this instruction */ 119 #endif120 118 "mov %[count], %[tmp]\n" 121 119 "testl %[tmp], %[tmp]\n" -
kernel/arch/ia32/src/atomic.S
r1090b8c rc00589d 43 43 44 44 0: 45 #ifdef CONFIG_HT46 45 pause # Pentium 4's with HT love this instruction 47 #endif48 46 movl (%ebx),%eax 49 47 testl %eax,%eax
Note:
See TracChangeset
for help on using the changeset viewer.