summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Brown2006-05-13 13:44:53 +0200
committerMichael Brown2006-05-13 13:44:53 +0200
commitdc8d429ec6f2ae5e8fcf1f450ab0513ffbad289d (patch)
tree40479c7a127d2b428ef0f70b47f6009b865e957f
parentAllow re-entrancy and provide a global counter of the number of (diff)
downloadipxe-dc8d429ec6f2ae5e8fcf1f450ab0513ffbad289d.tar.gz
ipxe-dc8d429ec6f2ae5e8fcf1f450ab0513ffbad289d.tar.xz
ipxe-dc8d429ec6f2ae5e8fcf1f450ab0513ffbad289d.zip
Provide a global counter for the number of interrupts hooked.
-rw-r--r--src/arch/i386/include/biosint.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/arch/i386/include/biosint.h b/src/arch/i386/include/biosint.h
index 55cb2728..d4e34963 100644
--- a/src/arch/i386/include/biosint.h
+++ b/src/arch/i386/include/biosint.h
@@ -8,6 +8,7 @@
struct segoff;
+extern int hooked_bios_interrupts;
extern void hook_bios_interrupt ( unsigned int interrupt, unsigned int handler,
struct segoff *chain_vector );
extern int unhook_bios_interrupt ( unsigned int interrupt,