diff options
author | Austin Clements <[email protected]> | 2010-09-02 14:08:45 -0400 |
---|---|---|
committer | Austin Clements <[email protected]> | 2010-09-02 14:08:45 -0400 |
commit | d599aa2e40fc116d84c609358a9fdc51824b621d (patch) | |
tree | 13e405afdfc724316ea1013ec65019b20aca29ad /x86.h | |
parent | d8828817d72962a6220cb1fca315cab4bbf6d0a3 (diff) | |
download | xv6-labs-d599aa2e40fc116d84c609358a9fdc51824b621d.tar.gz xv6-labs-d599aa2e40fc116d84c609358a9fdc51824b621d.tar.bz2 xv6-labs-d599aa2e40fc116d84c609358a9fdc51824b621d.zip |
Remove unused nop_pause function.
Diffstat (limited to 'x86.h')
-rw-r--r-- | x86.h | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -137,12 +137,6 @@ xchg(volatile uint *addr, uint newval) return result; } -static inline void -nop_pause(void) -{ - asm volatile("pause" : :); -} - //PAGEBREAK! static inline void lcr0(uint val) |