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 | |
parent | d8828817d72962a6220cb1fca315cab4bbf6d0a3 (diff) | |
download | xv6-labs-d599aa2e40fc116d84c609358a9fdc51824b621d.tar.gz xv6-labs-d599aa2e40fc116d84c609358a9fdc51824b621d.tar.bz2 xv6-labs-d599aa2e40fc116d84c609358a9fdc51824b621d.zip |
Remove unused nop_pause function.
-rwxr-xr-x | runoff | 2 | ||||
-rw-r--r-- | x86.h | 6 |
2 files changed, 2 insertions, 6 deletions
@@ -192,6 +192,8 @@ do if [ "x$defs" != "x$uses" ]; then echo $i $defs echo $uses |fmt -29 | sed 's/^/ /' +# else +# echo $i defined but not used >&2 fi done ) >refs @@ -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) |