mikaku / Fiwix

A UNIX-like kernel for the i386 architecture
https://www.fiwix.org
Other
401 stars 32 forks source link

Support syscall getdents64 #51

Closed rick-masters closed 8 months ago

rick-masters commented 8 months ago

testgetdents64.c.gz The getdents64 syscall is needed for musl support because musl defaults to using the 64-bit versions of this system call.

Test program is attached. This following will output information about the files in the current directory.

cc -m32 testgetdents64.c -o testgetdents64
./testgetdents64
mikaku commented 8 months ago

Thank you very much.