summaryrefslogtreecommitdiffstats
path: root/sys/xen/xenstore/xenstore.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/xen/xenstore/xenstore.c')
-rw-r--r--sys/xen/xenstore/xenstore.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/sys/xen/xenstore/xenstore.c b/sys/xen/xenstore/xenstore.c
index d404862..2c193ac 100644
--- a/sys/xen/xenstore/xenstore.c
+++ b/sys/xen/xenstore/xenstore.c
@@ -1657,3 +1657,20 @@ xs_unregister_watch(struct xs_watch *watch)
sx_xunlock(&xs.xenwatch_mutex);
}
}
+
+void
+xs_lock(void)
+{
+
+ sx_xlock(&xs.request_mutex);
+ return;
+}
+
+void
+xs_unlock(void)
+{
+
+ sx_xunlock(&xs.request_mutex);
+ return;
+}
+
OpenPOWER on IntegriCloud