27 lines
976 B
Diff
27 lines
976 B
Diff
From 6349965eccf12178cd4235e9f8996142d12ff607 Mon Sep 17 00:00:00 2001
|
|
From: serge-sans-paille <sguelton@redhat.com>
|
|
Date: Thu, 25 Feb 2021 14:27:43 +0100
|
|
Subject: [PATCH 1/2] [PATCH][lldb] Portable asm/ptrace.h include
|
|
|
|
---
|
|
lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm64.h | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm64.h b/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm64.h
|
|
index 344eae2..c483abc 100644
|
|
--- a/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm64.h
|
|
+++ b/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm64.h
|
|
@@ -14,7 +14,8 @@
|
|
#include "Plugins/Process/Linux/NativeRegisterContextLinux.h"
|
|
#include "Plugins/Process/Utility/RegisterInfoPOSIX_arm64.h"
|
|
|
|
-#include <asm/ptrace.h>
|
|
+#include <sys/ptrace.h>
|
|
+#include <linux/ptrace.h>
|
|
|
|
namespace lldb_private {
|
|
namespace process_linux {
|
|
--
|
|
1.8.3.1
|
|
|