WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] xc_load_elf.c, xc_load_bin.c:

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] xc_load_elf.c, xc_load_bin.c:
From: BitKeeper Bot <riel@xxxxxxxxxxx>
Date: Mon, 06 Jun 2005 08:57:47 +0000
Delivery-date: Mon, 06 Jun 2005 10:00:44 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: Xen Development List <xen-devel@xxxxxxxxxxxxxxxxxxx>
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
ChangeSet 1.1680, 2005/06/06 09:57:47+01:00, cl349@xxxxxxxxxxxxxxxxxxxx

        xc_load_elf.c, xc_load_bin.c:
          Fix missing rename (xc_*_probe -> probe_*) from previous commit.
        Signed-off-by: Christian Limpach <Christian.Limpach@xxxxxxxxxxxx>



 xc_load_bin.c |    6 +++---
 xc_load_elf.c |    6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)


diff -Nru a/tools/libxc/xc_load_bin.c b/tools/libxc/xc_load_bin.c
--- a/tools/libxc/xc_load_bin.c 2005-06-06 06:01:39 -04:00
+++ b/tools/libxc/xc_load_bin.c 2005-06-06 06:01:39 -04:00
@@ -108,9 +108,9 @@
     char *image, unsigned long image_size, int xch, u32 dom,
     unsigned long *parray, struct domain_setup_info *dsi);
 
-int xc_bin_probe(char *image,
-                 unsigned long image_size,
-                 struct load_funcs *load_funcs)
+int probe_bin(char *image,
+             unsigned long image_size,
+             struct load_funcs *load_funcs)
 {
     if ( NULL == findtable(image, image_size) )
     {
diff -Nru a/tools/libxc/xc_load_elf.c b/tools/libxc/xc_load_elf.c
--- a/tools/libxc/xc_load_elf.c 2005-06-06 06:01:39 -04:00
+++ b/tools/libxc/xc_load_elf.c 2005-06-06 06:01:39 -04:00
@@ -29,9 +29,9 @@
     char *image, int xch, u32 dom, unsigned long *parray,
     struct domain_setup_info *dsi);
 
-int xc_elf_probe(char *image,
-                 unsigned long image_size,
-                 struct load_funcs *load_funcs)
+int probe_elf(char *image,
+             unsigned long image_size,
+             struct load_funcs *load_funcs)
 {
     Elf_Ehdr *ehdr = (Elf_Ehdr *)image;
 

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] xc_load_elf.c, xc_load_bin.c:, BitKeeper Bot <=