aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xenstore/xenstore_client.c
diff options
context:
space:
mode:
authorvhanquez@kneesa.uk.xensource.com <vhanquez@kneesa.uk.xensource.com>2006-01-11 11:46:32 +0000
committervhanquez@kneesa.uk.xensource.com <vhanquez@kneesa.uk.xensource.com>2006-01-11 11:46:32 +0000
commit53ed6896f34e46734d1e2d681cb234440b41a94a (patch)
tree69fe273bbe1a7416a2efe020d05d9d7b4c2a78bf /tools/xenstore/xenstore_client.c
parentf2a491843da3d9918eabf0efa5377782c1a0aa68 (diff)
downloadxen-53ed6896f34e46734d1e2d681cb234440b41a94a.tar.gz
xen-53ed6896f34e46734d1e2d681cb234440b41a94a.tar.bz2
xen-53ed6896f34e46734d1e2d681cb234440b41a94a.zip
Share the same name for xenbus transaction type between user and kernel
Signed-off-by: Vincent Hanquez <vincent@xensource.com>
Diffstat (limited to 'tools/xenstore/xenstore_client.c')
-rw-r--r--tools/xenstore/xenstore_client.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/xenstore/xenstore_client.c b/tools/xenstore/xenstore_client.c
index 5090499af3..deb63453d3 100644
--- a/tools/xenstore/xenstore_client.c
+++ b/tools/xenstore/xenstore_client.c
@@ -66,7 +66,7 @@ usage(const char *progname)
#if defined(CLIENT_rm)
static int
-do_rm(char *path, struct xs_handle *xsh, xs_transaction_handle xth)
+do_rm(char *path, struct xs_handle *xsh, xs_transaction_t xth)
{
if (xs_rm(xsh, xth, path)) {
return 0;
@@ -81,7 +81,7 @@ do_rm(char *path, struct xs_handle *xsh, xs_transaction_handle xth)
static int
perform(int optind, int argc, char **argv, struct xs_handle *xsh,
- xs_transaction_handle xth, int prefix, int tidy)
+ xs_transaction_t xth, int prefix, int tidy)
{
while (optind < argc) {
#if defined(CLIENT_read)
@@ -179,7 +179,7 @@ int
main(int argc, char **argv)
{
struct xs_handle *xsh;
- xs_transaction_handle xth;
+ xs_transaction_t xth;
int ret = 0, socket = 0;
int prefix = 0;
int tidy = 0;