Sunagatov Denis

Results 104 comments of Sunagatov Denis

Update: pretty sure verbatim is the wrong word here as it implies the command string is the same, not the argv array, however I only care about argv for this...

Unifying to unix should not happen. Syscall numbers are different for different unix-like operating systems, and even on the same system they can be the same (on linux: `SYS_read` =...

Won't comment on the success cases, but I will make a comment on the errorneus ones ```odin foo(a, {0}) // error ``` Supporting this in general is inconcistent. If `foo`...

@gingerBill I can't see what the conflict is, so... no idea

https://github.com/odin-lang/Odin/pull/3476/files#diff-988793090a86cbbc5126181f239031996412c074c814e90738c6aa08e57b5d25R1310

It appears that our definition of the `Sig_Set` type is wrong then. In the issue you have linked, someone pointed out that on 64-bit architectures the size of the structure...

@jasonKercher Didn't realise you were doing core:os2/process work on linux, I was about to double that effort by making it part of my PR haha

The `get_stream` procedure probably needs to be reworked. I realised that it's deadlock-prone if one doesn't check for availability of data on an input stream. If the child waits on...