Kyota

Results 5 issues of Kyota

This PR fixes the conversion from milliseconds to microseconds in the DG_SleepMs function of the doomgeneric patch.

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...

According to [this article](https://www.kernel.org/doc/html/latest/filesystems/ext4/directory.html), directory entries are not split across filesystem blocks in the ext4 filesystem. This may also be the case for the ext2 filesystem, in which case the...

As of now, vnodes contain a field `nextInCache` which is a pointer to the next node in a linked list of cached vnodes. Since a slab allocator is utilized in...

enhancement