[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] libxl: Formally document libxl__xs_transaction
commit 6cad324ebb0e84783ddc2af1e5ecacf9f72641ea Author: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> AuthorDate: Mon Mar 17 13:21:24 2014 +0000 Commit: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> CommitDate: Mon Mar 17 15:53:59 2014 +0000 libxl: Formally document libxl__xs_transaction Provide a more formal description of the semantics of libxl__xs_transaction_start, _commit and _abort, in addition to the usage pattern example. Signed-off-by: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> --- tools/libxl/libxl_internal.h | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/tools/libxl/libxl_internal.h b/tools/libxl/libxl_internal.h index 9e02861..60a39ed 100644 --- a/tools/libxl/libxl_internal.h +++ b/tools/libxl/libxl_internal.h @@ -626,6 +626,26 @@ int libxl__xs_rm_checked(libxl__gc *gc, xs_transaction_t t, const char *path); * // other cleanups * return rc; * } + * + * Formally the states of *t are: + * + * name value of *t description + * Idle 0 no transaction exists + * Ready non-0 ready for work, nothing done yet + * Busy non-0 writes have been made but we are not finished + * Uncommitted non-0 writes have been made and should be committed + * + * libxl__xs_transaction_start: Idle -> Ready (on error: Idle) + * + * The transaction goes from Ready to Busy, and from Busy to + * Uncommitted, by the use of xenstore read and write operations + * (libxl__xs_..., xs_...) made by libxl__xs_transaction's caller. + * + * libxl__xs_transaction_commit: Ready/Uncommitted -> Idle + * on success (returns 0): xenstore has been updated + * on error (<0) or conflict (+1): updates discarded + * + * libxl__xs_transaction_abort: Any -> Idle (any updates discarded) */ int libxl__xs_transaction_start(libxl__gc *gc, xs_transaction_t *t); int libxl__xs_transaction_commit(libxl__gc *gc, xs_transaction_t *t); -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |