summaryrefslogtreecommitdiff
path: root/x86.h
diff options
context:
space:
mode:
authorAustin Clements <[email protected]>2010-09-02 14:08:45 -0400
committerAustin Clements <[email protected]>2010-09-02 14:08:45 -0400
commitd599aa2e40fc116d84c609358a9fdc51824b621d (patch)
tree13e405afdfc724316ea1013ec65019b20aca29ad /x86.h
parentd8828817d72962a6220cb1fca315cab4bbf6d0a3 (diff)
downloadxv6-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.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/x86.h b/x86.h
index 33e240d..5a59cc2 100644
--- a/x86.h
+++ b/x86.h
@@ -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)