Displaying 4 results from an estimated 4 matches for "guestfs___osinfo_map".
2013 Mar 23
2
failed to compile 1.18.11 on fedora18
On Sat, Mar 23, 2013 at 09:53:16PM +0800, javaon wrote:
> hi richard,
>
> I'm trying compiling libguestfs 1.18.11 on fedora 18. But I had the following error during make:
>
> dbdump.c:56:25: error: unknown type name 'guestfs___db_dump_callback'
[..]
> Do you know what I can do to fix it? Thanks!
Install 'hivex-devel' and re-run ./configure.
Rich.
--
2015 Feb 02
8
[PATCH 0/7 v2] Make copy_in & copy_out APIs, and use copy_in in customize
Hi,
attached there is the second version of the patch series adding
copy_in and copy_out in the library, mostly moving them from guestfish.
It also adds the copy_in usage in virt-customize, as aid in a new image
building.
Thanks,
Pino Toscano (7):
cmd: add a way to run (and wait) asynchronously commands
cmd: add a child-setup callback
cmd: add the possibility to get a fd to the process
2015 Jan 26
6
[PATCH 1/6] cmd: add a way to run (and wait) asynchronously commands
---
src/command.c | 64 +++++++++++++++++++++++++++++++++++++++++++-------
src/guestfs-internal.h | 3 +++
2 files changed, 58 insertions(+), 9 deletions(-)
diff --git a/src/command.c b/src/command.c
index 4bb469b..e26573d 100644
--- a/src/command.c
+++ b/src/command.c
@@ -360,7 +360,7 @@ debug_command (struct command *cmd)
}
static int
-run_command (struct command *cmd)
2015 Feb 14
2
[PATCH 0/2] Change guestfs__*
libguestfs has used double and triple underscores in identifiers.
These aren't valid for global names in C++.
(http://stackoverflow.com/a/228797)
These large but completely mechanical patches change the illegal
identifiers to legal ones.
Rich.