summaryrefslogtreecommitdiffstats
path: root/debuggerd/arm
diff options
context:
space:
mode:
authorDavid 'Digit' Turner <digit@google.com>2011-01-26 15:11:04 +0100
committerDavid 'Digit' Turner <digit@google.com>2011-02-01 14:38:30 +0100
commit2c259914a0c5d49a3fcb525a75f4817a3a99a6c8 (patch)
treeb2eab7ac3f8bdcd1007a0853681e4ebf69b108aa /debuggerd/arm
parent305b4b0f6069d733d3023a57fdc8a6d9cf7de2a6 (diff)
downloadsystem_core-2c259914a0c5d49a3fcb525a75f4817a3a99a6c8.zip
system_core-2c259914a0c5d49a3fcb525a75f4817a3a99a6c8.tar.gz
system_core-2c259914a0c5d49a3fcb525a75f4817a3a99a6c8.tar.bz2
debuggerd: Fix missing include.
The structure user_vfp is incorrectly defined in bionic/libc/kernel/arch-arm/asm/ptrace.h at the moment, while it should be under bionic/libc/kernel/arch-arm/asm/user.h instead. Before moving its definition in the corresponding source files, we need to fix its users. It happens that debuggerd is the only one for now, so fix this by including <linux/user.h> instead (which will include <asm/user.h> and <asm/ptrace.h>). Also, make the debug output less chatty by specifying all symbols to be listed through XLOG2 instead of XLOG. Change-Id: I16e0fa700945d86efd44ee885a84ad609c0a9b58
Diffstat (limited to 'debuggerd/arm')
-rw-r--r--debuggerd/arm/machine.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/debuggerd/arm/machine.c b/debuggerd/arm/machine.c
index 4eb97a3..e765c3b 100644
--- a/debuggerd/arm/machine.c
+++ b/debuggerd/arm/machine.c
@@ -32,6 +32,7 @@
#include <cutils/properties.h>
#include <linux/input.h>
+#include <linux/user.h>
#include "utility.h"