aboutsummaryrefslogtreecommitdiff
path: root/src/core/timer.c
diff options
context:
space:
mode:
authorMichael Brown <mcb30@etherboot.org>2006-08-14 22:29:51 +0000
committerMichael Brown <mcb30@etherboot.org>2006-08-14 22:29:51 +0000
commit97439cb6ebb49fad9855cc975cc80fb3eb8db13b (patch)
treece5375cd5e3ac7b2fa6109fd2725293db224665f /src/core/timer.c
parent562ab6d65ced8441a24616170426288f76b0fea6 (diff)
downloadipxe-97439cb6ebb49fad9855cc975cc80fb3eb8db13b.zip
ipxe-97439cb6ebb49fad9855cc975cc80fb3eb8db13b.tar.gz
ipxe-97439cb6ebb49fad9855cc975cc80fb3eb8db13b.tar.bz2
Kill off poll_interruptions(); it is lethal when we're acting as a PXE
stack or INT 13 emulator etc.
Diffstat (limited to 'src/core/timer.c')
-rw-r--r--src/core/timer.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/timer.c b/src/core/timer.c
index d4d38ad..73dfa8b 100644
--- a/src/core/timer.c
+++ b/src/core/timer.c
@@ -17,7 +17,6 @@ void mdelay(unsigned int msecs)
unsigned int i;
for(i = 0; i < msecs; i++) {
udelay(1000);
- poll_interruptions();
}
}
@@ -25,6 +24,5 @@ void waiton_timer2(unsigned int ticks)
{
load_timer2(ticks);
while(timer2_running()) {
- poll_interruptions();
}
}