summaryrefslogtreecommitdiff
path: root/lib/sanitizer_common/sanitizer_symbolizer_internal.h
diff options
context:
space:
mode:
authorKuba Mracek <mracek@apple.com>2018-02-11 20:44:04 +0000
committerKuba Mracek <mracek@apple.com>2018-02-11 20:44:04 +0000
commit2d44375c5ff703160001a171c16b1105764a425e (patch)
tree925a199538c3af7b74eeaef5aa797dcab4b8736e /lib/sanitizer_common/sanitizer_symbolizer_internal.h
parentd755bfd983c068cd1273d09355923810b62eca40 (diff)
downloadcompiler-rt-2d44375c5ff703160001a171c16b1105764a425e.tar.gz
Revert r324847, there's bot failures.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@324849 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/sanitizer_common/sanitizer_symbolizer_internal.h')
-rw-r--r--lib/sanitizer_common/sanitizer_symbolizer_internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sanitizer_common/sanitizer_symbolizer_internal.h b/lib/sanitizer_common/sanitizer_symbolizer_internal.h
index ada0867f8..a2ac11882 100644
--- a/lib/sanitizer_common/sanitizer_symbolizer_internal.h
+++ b/lib/sanitizer_common/sanitizer_symbolizer_internal.h
@@ -72,7 +72,7 @@ class SymbolizerTool {
// SymbolizerProcess may not be used from two threads simultaneously.
class SymbolizerProcess {
public:
- explicit SymbolizerProcess(const char *path, bool use_posix_spawn = false);
+ explicit SymbolizerProcess(const char *path, bool use_forkpty = false);
const char *SendCommand(const char *command);
protected:
@@ -109,7 +109,7 @@ class SymbolizerProcess {
uptr times_restarted_;
bool failed_to_start_;
bool reported_invalid_path_;
- bool use_posix_spawn_;
+ bool use_forkpty_;
};
class LLVMSymbolizerProcess;