Changeset 60201 in vbox for trunk/include
- Timestamp:
- Mar 26, 2016 11:43:31 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 106235
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/asm-amd64-x86.h
r59310 r60201 70 70 # pragma intrinsic(__writecr8) 71 71 # endif 72 # if RT_INLINE_ASM_USES_INTRIN >= 14 73 # pragma intrinsic(__halt) 74 # endif 72 75 # if RT_INLINE_ASM_USES_INTRIN >= 15 73 76 # pragma intrinsic(__readeflags) … … 2042 2045 * Halts the CPU until interrupted. 2043 2046 */ 2044 #if RT_INLINE_ASM_EXTERNAL 2047 #if RT_INLINE_ASM_EXTERNAL && RT_INLINE_ASM_USES_INTRIN < 14 2045 2048 DECLASM(void) ASMHalt(void); 2046 2049 #else … … 2049 2052 # if RT_INLINE_ASM_GNU_STYLE 2050 2053 __asm__ __volatile__("hlt\n\t"); 2054 # elif RT_INLINE_ASM_USES_INTRIN 2055 __halt(); 2051 2056 # else 2052 2057 __asm {
Note:
See TracChangeset
for help on using the changeset viewer.