[Lldb-commits] [lldb] r292936 - android-mips: define PTRACE_GETREGSET in headers don't do it

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Tue Jan 24 06:27:51 PST 2017


Author: labath
Date: Tue Jan 24 08:27:51 2017
New Revision: 292936

URL: http://llvm.org/viewvc/llvm-project?rev=292936&view=rev
Log:
android-mips: define PTRACE_GETREGSET in headers don't do it

PTRACE_GETREGSET is only defined on mips only since api level 21. Define
it ourselves, so we can compile with older platform headers.

Modified:
    lldb/trunk/source/Plugins/Process/Linux/NativeRegisterContextLinux_mips64.cpp

Modified: lldb/trunk/source/Plugins/Process/Linux/NativeRegisterContextLinux_mips64.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Linux/NativeRegisterContextLinux_mips64.cpp?rev=292936&r1=292935&r2=292936&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Linux/NativeRegisterContextLinux_mips64.cpp (original)
+++ lldb/trunk/source/Plugins/Process/Linux/NativeRegisterContextLinux_mips64.cpp Tue Jan 24 08:27:51 2017
@@ -71,6 +71,9 @@ struct pt_watch_regs {
 
 #define IRW (I | R | W)
 
+#ifndef PTRACE_GETREGSET
+#define PTRACE_GETREGSET 0x4204
+#endif
 struct pt_watch_regs default_watch_regs;
 
 using namespace lldb_private;




More information about the lldb-commits mailing list