================
@@ -444,6 +543,14 @@ size_t Interpreter::getEffectivePTUSize() const {
return PTUs.size() - InitPTUSize;
}
+#ifndef _WIN32
+pid_t Interpreter::getOutOfProcessExecutorPID() const {
+ if (IncrExecutor)
+ return IncrExecutor->getOutOfProcessChildPid();
+ return -1;
+}
+#endif
----------------
vgvassilev wrote:
```suggestion
pid_t Interpreter::getOutOfProcessExecutorPID() const {
if (IncrExecutor)
return IncrExecutor->getOutOfProcessChildPid();
return -1;
}
```
https://github.com/llvm/llvm-project/pull/155140
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits