aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxl/libxl_noarch.c
diff options
context:
space:
mode:
authorStefano Stabellini <stefano.stabellini@eu.citrix.com>2012-05-30 08:57:50 +0100
committerStefano Stabellini <stefano.stabellini@eu.citrix.com>2012-05-30 08:57:50 +0100
commit25801d01252b22ef4bcef405108414d59e91ae4f (patch)
tree7800c3d228f8b0168b33d3828d59fa7600f5ae28 /tools/libxl/libxl_noarch.c
parent03fc6103c678b319ab0bf0c3771310a061371615 (diff)
downloadxen-25801d01252b22ef4bcef405108414d59e91ae4f.tar.gz
xen-25801d01252b22ef4bcef405108414d59e91ae4f.tar.bz2
xen-25801d01252b22ef4bcef405108414d59e91ae4f.zip
libxl: Introduce libxl__arch_domain_create
Introduce an arch specific internal domain creation function. The X86 version of libxl__arch_domain_create is going to be introduced in the next few patches, to make it easier to spot all the code motions. Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com> Acked-by: Ian Jackson <Ian.Jackson@eu.citrix.com> Acked-by: Ian Campbell <Ian.Campbell@citrix.com> Committed-by: Ian Campbell <ian.campbell@citrix.com>
Diffstat (limited to 'tools/libxl/libxl_noarch.c')
-rw-r--r--tools/libxl/libxl_noarch.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/libxl/libxl_noarch.c b/tools/libxl/libxl_noarch.c
new file mode 100644
index 0000000000..789353530d
--- /dev/null
+++ b/tools/libxl/libxl_noarch.c
@@ -0,0 +1,8 @@
+#include "libxl_internal.h"
+#include "libxl_arch.h"
+
+int libxl__arch_domain_create(libxl__gc *gc, libxl_domain_config *d_config,
+ uint32_t domid)
+{
+ return 0;
+}