aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/xen/gdbstub.h
diff options
context:
space:
mode:
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-06-04 14:25:03 +0100
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-06-04 14:25:03 +0100
commit9282794cf54021cca84875d63db02dd355c8f321 (patch)
treeb14501c000dc524a934a4ba6a48650b3d0fff19e /xen/include/xen/gdbstub.h
parent3bb3120193bcc5764530d88b12bf6326cf63dadb (diff)
downloadxen-9282794cf54021cca84875d63db02dd355c8f321.tar.gz
xen-9282794cf54021cca84875d63db02dd355c8f321.tar.bz2
xen-9282794cf54021cca84875d63db02dd355c8f321.zip
gdbstub: Bit-field boolean must be unsigned.
Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'xen/include/xen/gdbstub.h')
-rw-r--r--xen/include/xen/gdbstub.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/include/xen/gdbstub.h b/xen/include/xen/gdbstub.h
index cf6e7e547c..46e4815e44 100644
--- a/xen/include/xen/gdbstub.h
+++ b/xen/include/xen/gdbstub.h
@@ -35,7 +35,7 @@ unsigned long str2ulong(const char *str, unsigned long bytes);
struct gdb_context {
int serhnd; /* handle on our serial line */
int console_steal_id; /* handle on stolen console */
- int currently_attached:1;
+ bool_t currently_attached;
atomic_t running;
unsigned long connected;
u8 signum;