diff options
| author | Stephane Sezer <sas@cd80.net> | 2014-12-09 03:18:09 +0000 |
|---|---|---|
| committer | Stephane Sezer <sas@cd80.net> | 2014-12-09 03:18:09 +0000 |
| commit | 8e6ec453f118298a419bf16db13185379289eba5 (patch) | |
| tree | c60b73c206957f0ada004ca08d03a53fac432335 /lldb/source/Plugins/Platform/Linux/PlatformLinux.h | |
| parent | 09135000210ec09396b4f7c5ed2884b8cf51aee6 (diff) | |
| download | bcm5719-llvm-8e6ec453f118298a419bf16db13185379289eba5.tar.gz bcm5719-llvm-8e6ec453f118298a419bf16db13185379289eba5.zip | |
Implement remote process listing in Linux platform.
Summary:
Test Plan: Connect to a remote implementing the platform protocol (ds2 in this case), run `platform process list` and see processes being displayed.
Reviewers: vharron, tfiala, clayborg
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D6571
llvm-svn: 223752
Diffstat (limited to 'lldb/source/Plugins/Platform/Linux/PlatformLinux.h')
| -rw-r--r-- | lldb/source/Plugins/Platform/Linux/PlatformLinux.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Platform/Linux/PlatformLinux.h b/lldb/source/Plugins/Platform/Linux/PlatformLinux.h index 19b397ffa9b..eca2eae4cd4 100644 --- a/lldb/source/Plugins/Platform/Linux/PlatformLinux.h +++ b/lldb/source/Plugins/Platform/Linux/PlatformLinux.h @@ -81,6 +81,10 @@ namespace lldb_private { bool GetProcessInfo (lldb::pid_t pid, ProcessInstanceInfo &proc_info) override; + uint32_t + FindProcesses (const ProcessInstanceInfoMatch &match_info, + ProcessInstanceInfoList &process_infos) override; + bool GetSupportedArchitectureAtIndex (uint32_t idx, ArchSpec &arch) override; |

