]> xenbits.xensource.com Git - people/liuw/libxenctrl-split/libvirt.git/commitdiff
build: add new file, for lxc_protocol checking
authorEric Blake <eblake@redhat.com>
Tue, 15 Jan 2013 18:54:57 +0000 (11:54 -0700)
committerEric Blake <eblake@redhat.com>
Tue, 15 Jan 2013 19:01:22 +0000 (12:01 -0700)
Commit 509eb51 added lxc_protocol.x; but without the initial
checkin of src/lxc_protocol-structs, 'make check' would fail for
anyone with pdwtags installed:
make[3]: *** No rule to make target `lxc_protocol-structs', needed by `check-protocol'.  Stop.

* src/lxc_protocol-structs: New file.

src/lxc_protocol-structs [new file with mode: 0644]

diff --git a/src/lxc_protocol-structs b/src/lxc_protocol-structs
new file mode 100644 (file)
index 0000000..eb54172
--- /dev/null
@@ -0,0 +1,13 @@
+/* -*- c -*- */
+struct remote_nonnull_domain {
+        remote_nonnull_string      name;
+        remote_uuid                uuid;
+        int                        id;
+};
+struct lxc_domain_open_namespace_args {
+        remote_nonnull_domain      dom;
+        u_int                      flags;
+};
+enum lxc_procedure {
+        LXC_PROC_DOMAIN_OPEN_NAMESPACE = 1,
+};