summaryrefslogtreecommitdiff
path: root/xmake/core/sandbox/modules/process.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2020-02-05 00:39:54 +0800
committerruki <[email protected]>2020-02-07 22:45:56 +0800
commit35b8b34362abe28a638af8ee02d3babe8e3548e2 (patch)
treea47c0a1da53fffd81f0aa7832ceb3646950bd08a /xmake/core/sandbox/modules/process.lua
parent94d3eb649e489a597a2f5d966d2249a9e64d87e3 (diff)
uses new runjobs
Diffstat (limited to 'xmake/core/sandbox/modules/process.lua')
-rw-r--r--xmake/core/sandbox/modules/process.lua10
1 files changed, 0 insertions, 10 deletions
diff --git a/xmake/core/sandbox/modules/process.lua b/xmake/core/sandbox/modules/process.lua
index 92aa380de..de46625a1 100644
--- a/xmake/core/sandbox/modules/process.lua
+++ b/xmake/core/sandbox/modules/process.lua
@@ -139,15 +139,5 @@ function sandbox_process.asyncrun(task, waitchars)
end
end
--- run jobs with processes
-function sandbox_process.runjobs(jobfunc, total, comax, timeout, timer)
-
- -- run them
- local ok, errors = process.runjobs(jobfunc, total, comax, timeout, timer)
- if not ok then
- raise(errors)
- end
-end
-
-- return module
return sandbox_process