File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -135,6 +135,7 @@ else()
135
135
136
136
elseif (CMAKE_SYSTEM_NAME MATCHES "AIX" )
137
137
add_host_subdirectory (aix
138
+ aix/Host.cpp
138
139
aix/HostInfoAIX.cpp
139
140
)
140
141
endif ()
Original file line number Diff line number Diff line change
1
+ // ===-- source/Host/aix/Host.cpp ----------------------------------------===//
2
+ //
3
+ // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
+ // See https://llvm.org/LICENSE.txt for license information.
5
+ // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
+ //
7
+ // ===----------------------------------------------------------------------===//
8
+
9
+ #include " lldb/Host/Host.h"
10
+ #include " lldb/Utility/Status.h"
11
+
12
+ using namespace lldb_private ;
13
+
14
+ uint32_t Host::FindProcessesImpl (const ProcessInstanceInfoMatch &match_info,
15
+ ProcessInstanceInfoList &process_infos) {
16
+ return 0 ;
17
+ }
18
+
19
+ bool Host::GetProcessInfo (lldb::pid_t pid, ProcessInstanceInfo &process_info) {
20
+ return false ;
21
+ }
22
+
23
+ Status Host::ShellExpandArguments (ProcessLaunchInfo &launch_info) {
24
+ return Status (" unimplemented" );
25
+ }
You can’t perform that action at this time.
0 commit comments