File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,10 @@ int __pthread_fchdir(int fildes);
90
90
using namespace lldb ;
91
91
using namespace lldb_private ;
92
92
93
+ #if !defined(__APPLE__)
94
+ void Host::SystemLog (llvm::StringRef message) { llvm::errs () << message; }
95
+ #endif
96
+
93
97
#if !defined(__APPLE__) && !defined(_WIN32)
94
98
static thread_result_t
95
99
MonitorChildProcessThreadFunction (::pid_t pid,
@@ -106,10 +110,6 @@ llvm::Expected<HostThread> Host::StartMonitoringChildProcess(
106
110
});
107
111
}
108
112
109
- #if !defined(__APPLE__)
110
- void Host::SystemLog (llvm::StringRef message) { llvm::errs () << message; }
111
- #endif
112
-
113
113
#ifndef __linux__
114
114
// Scoped class that will disable thread canceling when it is constructed, and
115
115
// exception safely restore the previous value it when it goes out of scope.
You can’t perform that action at this time.
0 commit comments