diff options
| author | Mike Aizatsky <aizatsky@chromium.org> | 2016-01-25 19:43:52 +0000 |
|---|---|---|
| committer | Mike Aizatsky <aizatsky@chromium.org> | 2016-01-25 19:43:52 +0000 |
| commit | 53849fee26105f83c1565989328f367cde5b5e14 (patch) | |
| tree | 5718204d8146a502d09f691d16b588397d0656ce /compiler-rt/lib/sanitizer_common/sanitizer_win.cc | |
| parent | d3d51061fbf6117532391d0e318b630355e75827 (diff) | |
| download | bcm5719-llvm-53849fee26105f83c1565989328f367cde5b5e14.tar.gz bcm5719-llvm-53849fee26105f83c1565989328f367cde5b5e14.zip | |
[sanitizers] extracted process management functions
Differential Revision: http://reviews.llvm.org/D16542
llvm-svn: 258710
Diffstat (limited to 'compiler-rt/lib/sanitizer_common/sanitizer_win.cc')
| -rw-r--r-- | compiler-rt/lib/sanitizer_common/sanitizer_win.cc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_win.cc b/compiler-rt/lib/sanitizer_common/sanitizer_win.cc index 0c1ee81ac70..5915a01d59b 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_win.cc +++ b/compiler-rt/lib/sanitizer_common/sanitizer_win.cc @@ -775,6 +775,18 @@ char **GetArgv() { return 0; } +int StartSubprocess(const char *program, char *const argv[], + fd_t std_in_fd = kInvalidFd, fd_t std_out_fd = kInvalidFd, + fd_t std_err_fd = kInvalidFd) { + // FIXME: implement on this platform. + return -1; +} + +bool IsProcessRunning(int pid) { + // FIXME: implement on this platform. + return false; +} + } // namespace __sanitizer #endif // _WIN32 |

