From 1a2d0aa9027d6023f3240abd23e0027a2ce25925 Mon Sep 17 00:00:00 2001 From: Ewan Mellor Date: Mon, 9 Apr 2007 11:39:27 +0100 Subject: Added bindings and documentation for host.send_debug_keys and host.get_log. Signed-off-by: Ewan Mellor --- tools/libxen/include/xen_host.h | 14 ++++++++++++++ tools/libxen/src/xen_host.c | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) (limited to 'tools/libxen') diff --git a/tools/libxen/include/xen_host.h b/tools/libxen/include/xen_host.h index a27c875687..f380f989d0 100644 --- a/tools/libxen/include/xen_host.h +++ b/tools/libxen/include/xen_host.h @@ -442,6 +442,20 @@ extern bool xen_host_dmesg_clear(xen_session *session, char **result, xen_host host); +/** + * Get the host's log file. + */ +extern bool +xen_host_get_log(xen_session *session, char **result, xen_host host); + + +/** + * Inject the given string as debugging keys into Xen. + */ +extern bool +xen_host_send_debug_keys(xen_session *session, xen_host host, char *keys); + + /** * List all supported methods. */ diff --git a/tools/libxen/src/xen_host.c b/tools/libxen/src/xen_host.c index 2ae37fefe4..a55b91e0af 100644 --- a/tools/libxen/src/xen_host.c +++ b/tools/libxen/src/xen_host.c @@ -756,6 +756,39 @@ xen_host_dmesg_clear(xen_session *session, char **result, xen_host host) } +bool +xen_host_get_log(xen_session *session, char **result, xen_host host) +{ + abstract_value param_values[] = + { + { .type = &abstract_type_string, + .u.string_val = host } + }; + + abstract_type result_type = abstract_type_string; + + *result = NULL; + XEN_CALL_("host.get_log"); + return session->ok; +} + + +bool +xen_host_send_debug_keys(xen_session *session, xen_host host, char *keys) +{ + abstract_value param_values[] = + { + { .type = &abstract_type_string, + .u.string_val = host }, + { .type = &abstract_type_string, + .u.string_val = keys } + }; + + xen_call_(session, "host.send_debug_keys", param_values, 2, NULL, NULL); + return session->ok; +} + + bool xen_host_list_methods(xen_session *session, struct xen_string_set **result) { -- cgit v1.2.3