zigux icon indicating copy to clipboard operation
zigux copied to clipboard

Zigux is an attempt to write a UNIX-like kernel in Zig

Results 3 zigux issues
Sort by recently updated
recently updated
newest added

This PR fixes the issue where the `isatty` syscall was never returning `EBADF`, even when `fd` was an invalid file descriptor. Resolves #4.

The `isatty` system call currently returns `ENOTTY` even when `fd` is not a valid file descriptor. It should be returning `EBADF` in this case (although I doubt any programs really...

Currently GCC compiles just fine, but when running it under zigux, the following error is shown: ``` root@zigux /$ gcc gcc: fatal error: cannot read spec file '/usr/lib/gcc/x86_64-zigux/12.1.0/specs': No such...