Bananymous
|
fee3677fb9
|
Kernel/LibC: add mmap for private anonymous mappings
This will be used by the userspace to get more memory. Currently
kernel handles all allocations, which is not preferable.
|
2023-09-22 23:01:14 +03:00 |
Bananymous
|
9e4a87021c
|
Kernel: Fix directory permissions
We did not care about X bit in directories and instead used only the
R bit for search/read.
|
2023-09-08 11:46:53 +03:00 |
Bananymous
|
d34c0a5abe
|
LibC: cleanup fstatat
|
2023-08-11 12:25:15 +03:00 |
Bananymous
|
52c4eebd77
|
Kernel: Implement SYS_FSTAT
|
2023-06-11 03:29:22 +03:00 |
Bananymous
|
9d64dbd5c2
|
Kernel/LibC: add SYS_STAT and stat(), lstat()
|
2023-06-05 14:37:14 +03:00 |
Bananymous
|
cbb9f47ee5
|
LibC: add wait and waitpid
Note that wait() doesn't work since only waiting for specified
pid is supported. wait() will just return -1 and set errno to
ECHILD.
|
2023-06-04 18:00:52 +03:00 |