summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2018-06-22 10:19:16 +0900
committerGitHub <[email protected]>2018-06-22 10:19:16 +0900
commit410a5031fcd1a17255f8ad823c020c2856891f0c (patch)
tree4a1a122b1ff6ad96af383aa6580aea767164adb8
parent640fca327625c9e6385c4bdaf51d02e1a27eb6d3 (diff)
parent61e8f831dd0d8936087b2d3be9a135e0802d3d64 (diff)
downloadmruby-410a5031fcd1a17255f8ad823c020c2856891f0c.tar.gz
mruby-410a5031fcd1a17255f8ad823c020c2856891f0c.zip
Merge pull request #4057 from take-cheeze/use_thread_pass
Use `Thread.pass` instead of sleeping.
-rwxr-xr-xminirake2
1 files changed, 1 insertions, 1 deletions
diff --git a/minirake b/minirake
index 09592980f..00675ba39 100755
--- a/minirake
+++ b/minirake
@@ -562,7 +562,7 @@ class RakeApp
end
def wait_process
- sleep 0.1
+ Thread.pass
exited = []
$rake_fiber_table.each do |pid, v|