Displaying 3 results from an estimated 3 matches for "stdout_ev".
Did you mean:
stdout_fd
2015 May 21
1
Qemu-guest agent
Hi all,
I am new to libvirt, I am trying to execute some commands inside guest
domains from my host machine using libvirt-Python API. So far I have been
able to open up a stream but I am not sure how to send commands on the
stream (through virDomainOpenConsole). After hours of searching through
different forums I found out that there is a utlity called qemu-guest agent
which can solve my problem.
2009 Aug 18
8
src/ is now warning-free, too
These patches first make src/ warning free, and then
turn on the strict warning options.
75 0001-build-suppress-an-ignored-write-return-value-warning.patch
38 0002-build-suppress-an-ignored-dup-return-value-warning.patch
27 0003-generator.ml-suppress-signed-unsigned-compare-warnin.patch
48 0004-build-don-t-perform-arithmetic-on-void-pointers.patch
30
2009 Aug 03
1
[PATCH 1/2] Convert all TABs-as-indentation to spaces.
...around, so kill qemu. */
+ kill (qemu_pid, 9);
+ _exit (0);
}
sleep (2);
}
@@ -1257,8 +1257,8 @@ guestfs_launch (guestfs_h *g)
g->stdout_watch =
g->main_loop->add_handle (g->main_loop, g, g->fd[1],
- GUESTFS_HANDLE_READABLE,
- stdout_event, NULL);
+ GUESTFS_HANDLE_READABLE,
+ stdout_event, NULL);
if (g->stdout_watch == -1) {
error (g, _("could not watch qemu stdout"));
goto cleanup3;
@@ -1309,7 +1309,7 @@ guestfs_launch (guestfs_h *g)
*/
static...