Displaying 2 results from an estimated 2 matches for "xs_api".
Did you mean:
ns_api
2012 Apr 02
23
[PATCH 00 of 18] [v2] tools: fix bugs and build errors triggered by -O2 -Wall -Werror
...drivers/img2qcow.c | 7 +-----
tools/blktap/drivers/qcow2raw.c | 6 ++---
tools/blktap/drivers/tapaio.c | 1
tools/blktap/drivers/tapdisk.c | 18 ++++++++--------
tools/blktap/lib/xenbus.c | 11 ++++-----
tools/blktap/lib/xs_api.c | 32 ++++++++++++++---------------
tools/blktap2/control/tap-ctl-check.c | 1
tools/blktap2/control/tap-ctl-list.c | 3 --
tools/blktap2/control/tap-ctl-spawn.c | 2 -
tools/blktap2/drivers/block-aio.c | 3 --
tools/blktap2/drivers/block-l...
2006 Oct 17
4
[PATCH] Fix tools build on Solaris
...$(TOOL_CFLAGS)
CFLAGS += -Werror
CFLAGS += -Wno-unused
CFLAGS += -fno-strict-aliasing
diff --git a/tools/blktap/lib/Makefile b/tools/blktap/lib/Makefile
--- a/tools/blktap/lib/Makefile
+++ b/tools/blktap/lib/Makefile
@@ -14,6 +14,7 @@ SRCS :=
SRCS :=
SRCS += xenbus.c blkif.c xs_api.c
+CFLAGS += $(TOOL_CFLAGS)
CFLAGS += -Werror
CFLAGS += -Wno-unused
CFLAGS += -fno-strict-aliasing -fPIC
diff --git a/tools/console/Makefile b/tools/console/Makefile
--- a/tools/console/Makefile
+++ b/tools/console/Makefile
@@ -5,7 +5,7 @@ DAEMON_INSTALL_DIR = /usr/sbin
DAEMON_INSTALL...