[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 21/35] libxl: ao abort: Provide explicit internal abort check API
Some places in libxl which can't handle abort via a libxl__ao_abortable callback might nevertheless benefit from being able to explicitly check whether abort has been requested. Provide the (fairly trivial) internal API function to do this. Signed-off-by: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> --- v2: New in this version of the series. --- tools/libxl/libxl_event.c | 11 +++++++++++ tools/libxl/libxl_internal.h | 2 ++ 2 files changed, 13 insertions(+) diff --git a/tools/libxl/libxl_event.c b/tools/libxl/libxl_event.c index f9daa55..5015563 100644 --- a/tools/libxl/libxl_event.c +++ b/tools/libxl/libxl_event.c @@ -2033,6 +2033,17 @@ int libxl_ao_abort(libxl_ctx *ctx, const libxl_asyncop_how *how) return rc; } +int libxl__ao_aborting(libxl__ao *ao) +{ + libxl__ao *root = ao_nested_root(ao); + if (root->aborting) { + DBG("ao=%p: aborting at explicit check (root=%p)", ao, root); + return ERROR_ABORTED; + } + + return 0; +} + int libxl__ao_abortable_register(libxl__ao_abortable *abrt) { libxl__ao *ao = abrt->ao; diff --git a/tools/libxl/libxl_internal.h b/tools/libxl/libxl_internal.h index b275ee4..637b96b 100644 --- a/tools/libxl/libxl_internal.h +++ b/tools/libxl/libxl_internal.h @@ -226,6 +226,8 @@ static inline void libxl__ao_abortable_init static inline bool libxl__ao_abortable_isregistered (const libxl__ao_abortable *c) { return c->registered; } +int libxl__ao_aborting(libxl__ao *ao); /* -> 0 or ERROR_ABORTED */ + typedef struct libxl__ev_time libxl__ev_time; typedef void libxl__ev_time_callback(libxl__egc *egc, libxl__ev_time *ev, -- 1.7.10.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |