direct-io.hg
changeset 5332:02d4d4ab41ce
bitkeeper revision 1.1680 (42a4100bIstutWsVAoi7aPO8tLbFkA)
xc_load_elf.c, xc_load_bin.c:
Fix missing rename (xc_*_probe -> probe_*) from previous commit.
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
xc_load_elf.c, xc_load_bin.c:
Fix missing rename (xc_*_probe -> probe_*) from previous commit.
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
author | cl349@firebug.cl.cam.ac.uk |
---|---|
date | Mon Jun 06 08:57:47 2005 +0000 (2005-06-06) |
parents | c2f094c21ddf |
children | fa735bb2f79a |
files | tools/libxc/xc_load_bin.c tools/libxc/xc_load_elf.c |
line diff
1.1 --- a/tools/libxc/xc_load_bin.c Mon Jun 06 08:44:42 2005 +0000 1.2 +++ b/tools/libxc/xc_load_bin.c Mon Jun 06 08:57:47 2005 +0000 1.3 @@ -108,9 +108,9 @@ loadbinimage( 1.4 char *image, unsigned long image_size, int xch, u32 dom, 1.5 unsigned long *parray, struct domain_setup_info *dsi); 1.6 1.7 -int xc_bin_probe(char *image, 1.8 - unsigned long image_size, 1.9 - struct load_funcs *load_funcs) 1.10 +int probe_bin(char *image, 1.11 + unsigned long image_size, 1.12 + struct load_funcs *load_funcs) 1.13 { 1.14 if ( NULL == findtable(image, image_size) ) 1.15 {
2.1 --- a/tools/libxc/xc_load_elf.c Mon Jun 06 08:44:42 2005 +0000 2.2 +++ b/tools/libxc/xc_load_elf.c Mon Jun 06 08:57:47 2005 +0000 2.3 @@ -29,9 +29,9 @@ loadelfsymtab( 2.4 char *image, int xch, u32 dom, unsigned long *parray, 2.5 struct domain_setup_info *dsi); 2.6 2.7 -int xc_elf_probe(char *image, 2.8 - unsigned long image_size, 2.9 - struct load_funcs *load_funcs) 2.10 +int probe_elf(char *image, 2.11 + unsigned long image_size, 2.12 + struct load_funcs *load_funcs) 2.13 { 2.14 Elf_Ehdr *ehdr = (Elf_Ehdr *)image; 2.15