Skip to content
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

extending filesystem support for Hermit #115984

Merged
merged 2 commits into from
Apr 8, 2024
Merged

extending filesystem support for Hermit #115984

merged 2 commits into from
Apr 8, 2024

Commits on Mar 1, 2024

  1. Configuration menu
    Copy the full SHA
    aa11bf6 View commit details
    Browse the repository at this point in the history
  2. revise interface to read directory entries

    The new interface has some similarities to Linux system call
    getdents64. The system call reads several dirent64 structures.
    At the end of each dirent64 is stored the name of the file.
    The length of file name is implictly part of dirent64 because
    d_reclen contains size of dirent64 plus the length of the file
    name.
    stlankes committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    b1c7804 View commit details
    Browse the repository at this point in the history