Skip to content

Instantly share code, notes, and snippets.

@edgarcosta
Created May 14, 2024 20:48
Show Gist options
  • Save edgarcosta/5f98706686bc8f256ae84d49c00ac878 to your computer and use it in GitHub Desktop.
Save edgarcosta/5f98706686bc8f256ae84d49c00ac878 to your computer and use it in GitHub Desktop.
function MultiFork(n)
res := [];
for i in [1..n] do
if #res eq i - 1 then
f := Fork();
if f ne 0 then
Append(~res, f);
else
return [], i;
end if;
end if;
end for;
return res, 0;
end function;
b, r := MultiFork(10);
print b, r;
if r ne 0 then
exit 0;
end if;
// If you remove this comment, everything goes as expected
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment