Fixed incorrect const values

This commit is contained in:
Eduard Urbach 2025-02-21 13:47:56 +01:00
parent 4dbfa80939
commit d5bcf340e9
Signed by: eduard
GPG key ID: 49226B848C78F6C8
22 changed files with 93 additions and 92 deletions

View file

@ -19,5 +19,5 @@ create(func *any) -> int {
store(stack, 8, core.exit)
stack -= 8
store(stack, 8, func)
return sys.clone(clone.vm|clone.fs|clone.files|clone.sighand|clone.parent|clone.thread|clone.io, stack)
return sys.clone(clone.vm|clone.fs|clone.files|clone.sighand|clone.parent|clone.thread|clone.io, stack, 0, 0, 0)
}