Displaying 1 result from an estimated 1 matches for "sp_info".
Did you mean:
spp_info
2009 Mar 02
0
ioemu: make various functions in i386-dm/helper2.c static
...==================================
--- ioemu-remote.orig/i386-dm/helper2.c 2009-03-02 15:18:05.000000000 +1100
+++ ioemu-remote/i386-dm/helper2.c 2009-03-02 15:18:33.000000000 +1100
@@ -211,7 +211,7 @@ target_phys_addr_t cpu_get_phys_page_deb
}
//some functions to handle the io req packet
-void sp_info(void)
+static void sp_info(void)
{
ioreq_t *req;
int i;
@@ -281,7 +281,8 @@ static ioreq_t *cpu_get_ioreq(void)
return NULL;
}
-unsigned long do_inp(CPUState *env, unsigned long addr, unsigned long size)
+static unsigned long do_inp(CPUState *env, unsigned long addr,
+...