diff options
Diffstat (limited to 'source/core')
| -rw-r--r-- | source/core/unix/slang-unix-process-util.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/core/unix/slang-unix-process-util.cpp b/source/core/unix/slang-unix-process-util.cpp index 24107fab3..af49eec37 100644 --- a/source/core/unix/slang-unix-process-util.cpp +++ b/source/core/unix/slang-unix-process-util.cpp @@ -146,9 +146,9 @@ namespace Slang { return SLANG_FAIL; } - // Set a timeout of twenty seconds; + // Set a timeout of 100 seconds; // we really shouldn't wait too long... - int pollTimeout = 20000; + int pollTimeout = 100000; int pollResult = poll(pollInfos, pollInfoCount, pollTimeout); if (pollResult <= 0) { |
