diff options
| author | 2017-01-22 23:33:19 +0000 | |
|---|---|---|
| committer | 2017-01-22 23:33:20 +0000 | |
| commit | 7400f66bc854a2a5ddee73f42900de69b6d71b4d (patch) | |
| tree | 7097428322484703b9e4d5991b143c619dedc6f5 /runtime/runtime.cc | |
| parent | a90b3dd3f22ce0674970365a5903571276a8fc01 (diff) | |
| parent | 3fceaf500d570722122f2d092f302d27769e3a51 (diff) | |
Merge "Use higher default thread suspend timeout for run tests"
Diffstat (limited to 'runtime/runtime.cc')
| -rw-r--r-- | runtime/runtime.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/runtime.cc b/runtime/runtime.cc index 4936a2f9a7..4a32abee48 100644 --- a/runtime/runtime.cc +++ b/runtime/runtime.cc @@ -1045,7 +1045,7 @@ bool Runtime::Init(RuntimeArgumentMap&& runtime_options_in) { monitor_list_ = new MonitorList; monitor_pool_ = MonitorPool::Create(); - thread_list_ = new ThreadList; + thread_list_ = new ThreadList(runtime_options.GetOrDefault(Opt::ThreadSuspendTimeout)); intern_table_ = new InternTable; verify_ = runtime_options.GetOrDefault(Opt::Verify); |