search for: libxl__file_reference_map

Displaying 2 results from an estimated 2 matches for "libxl__file_reference_map".

2012 May 17
8
[PATCH] libxl: do not overwrite user supplied config when running bootloader
...15 @@ static int parse_bootloader_result(libxl #define COMMAND(s) ((rhs = bootloader_result_command(gc, buf, s, sizeof(s)-1))) if (COMMAND("kernel")) { - free(info->u.pv.kernel.path); - info->u.pv.kernel.path = libxl__strdup(NULL, rhs); - libxl__file_reference_map(&info->u.pv.kernel); - unlink(info->u.pv.kernel.path); + bl->kernel->path = libxl__strdup(gc, rhs); + libxl__file_reference_map(bl->kernel); + unlink(bl->kernel->path); } else if (COMMAND("ramdisk")) { -...
2010 Aug 18
16
[PATCH 00 of 16] libxl: autogenerate type definitions and destructor functions
The series introduces auto-generation of the type definitions used in the libxl interface followed by auto-generation of a destructor function for each type. In the future it may be possible to use the related data structures for other purposes, for example auto-generation of the functions to marshal between C and language binding data types. tools/_libxl_types.h should be identical both before