aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/xen/gdbstub.h
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-03-06 23:49:48 +0100
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-03-06 23:49:48 +0100
commita5262c46302b078d4ee5bdc78e702c3c074e1e27 (patch)
tree80c46109160d0a5c4b49e965be189033f347d90d /xen/include/xen/gdbstub.h
parent6dab2f670d4310fcdbadf0f82d502dc125636bff (diff)
downloadxen-a5262c46302b078d4ee5bdc78e702c3c074e1e27.tar.gz
xen-a5262c46302b078d4ee5bdc78e702c3c074e1e27.tar.bz2
xen-a5262c46302b078d4ee5bdc78e702c3c074e1e27.zip
Fix additional gdbstub issues.
- gdbstub.h uses atomic_t and PAGE_SIZE, so include those headers - do not lie about setting breakpoints - fix memory writing Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
Diffstat (limited to 'xen/include/xen/gdbstub.h')
-rw-r--r--xen/include/xen/gdbstub.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/xen/include/xen/gdbstub.h b/xen/include/xen/gdbstub.h
index 609831de95..c4423fa6ed 100644
--- a/xen/include/xen/gdbstub.h
+++ b/xen/include/xen/gdbstub.h
@@ -21,6 +21,9 @@
#ifndef __XEN_GDBSTUB_H__
#define __XEN_GDBSTUB_H__
+#include <asm/atomic.h>
+#include <asm/page.h>
+
#ifdef CRASH_DEBUG
/* value <-> char (de)serialzers for arch specific gdb backends */