[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] golang/xenlight: add missing arguments to libxl_domain_shutdown/reboot
From: Nick Rosbrook <rosbrookn@xxxxxxxxxxxx> These functions now have a third parameter of type const *libxl_asyncop_how. Pass nil for this argument to fix compilation and maintain the synchronous behavior. Signed-off-by: Nick Rosbrook <rosbrookn@xxxxxxxxxxxx> --- tools/golang/xenlight/xenlight.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/golang/xenlight/xenlight.go b/tools/golang/xenlight/xenlight.go index 59b8186a64..902cbb839e 100644 --- a/tools/golang/xenlight/xenlight.go +++ b/tools/golang/xenlight/xenlight.go @@ -1041,7 +1041,7 @@ func (Ctx *Context) DomainShutdown(id Domid) (err error) { return } - ret := C.libxl_domain_shutdown(Ctx.ctx, C.uint32_t(id)) + ret := C.libxl_domain_shutdown(Ctx.ctx, C.uint32_t(id), nil) if ret != 0 { err = Error(-ret) @@ -1056,7 +1056,7 @@ func (Ctx *Context) DomainReboot(id Domid) (err error) { return } - ret := C.libxl_domain_reboot(Ctx.ctx, C.uint32_t(id)) + ret := C.libxl_domain_reboot(Ctx.ctx, C.uint32_t(id), nil) if ret != 0 { err = Error(-ret) -- 2.19.1 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |