From dc8d429ec6f2ae5e8fcf1f450ab0513ffbad289d Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Sat, 13 May 2006 11:44:53 +0000 Subject: [PATCH] Provide a global counter for the number of interrupts hooked. --- src/arch/i386/include/biosint.h | 1 + 1 file changed, 1 insertion(+) 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,