-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sys_getdents64 use maxlen(255), which should change to variable length #110
Labels
bug
Something isn't working
Comments
|
For alignment requirement, the size of |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When running Python.
Tests use getdents64 to read a directory which has so many directory entries. But now the implements in RuxOS, can only read 7 entries at a time, so it has to invoke it a lot of times, which makes it slow.
So we have to change the implement of getdents64 in RuxOS.
The text was updated successfully, but these errors were encountered: