From 1d95fd75df18bf25cb445feb47caf62da25c00e8 Mon Sep 17 00:00:00 2001 From: Nick Rosbrook Date: Mon, 24 May 2021 16:36:51 -0400 Subject: [PATCH] golang/xenlight: add SendTrigger wrapper Add a warpper around libxl_send_trigger. Signed-off-by: Nick Rosbrook Reviewed-by: George Dunlap --- tools/golang/xenlight/xenlight.go | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tools/golang/xenlight/xenlight.go b/tools/golang/xenlight/xenlight.go index f605f17613..a651554d0c 100644 --- a/tools/golang/xenlight/xenlight.go +++ b/tools/golang/xenlight/xenlight.go @@ -1282,3 +1282,14 @@ func (ctx *Context) DomainDestroy(domid Domid) error { return nil } + +// SendTrigger sends a Trigger to the domain specified by domid. +func (ctx *Context) SendTrigger(domid Domid, trigger Trigger, vcpuid int) error { + ret := C.libxl_send_trigger(ctx.ctx, C.uint32_t(domid), + C.libxl_trigger(trigger), C.uint32_t(vcpuid), nil) + if ret != 0 { + return Error(ret) + } + + return nil +} -- 2.30.2