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

Implement memory mapped files #133

Closed
hangpark opened this issue May 20, 2017 · 0 comments
Closed

Implement memory mapped files #133

hangpark opened this issue May 20, 2017 · 0 comments
Assignees
Labels
Milestone

Comments

@hangpark
Copy link
Owner

hangpark commented May 20, 2017

Support following two system calls:

mapid_t mmap (int fd, void *addr)
Maps the file open as fd into the process’s virtual address space. The entire file is mapped into consecutive virtual pages starting at addr.

void munmap (mapid_t mapping)
Unmaps the mapping designated by mapping, which must be a mapping ID returned
by a previous call to mmap by the same process that has not yet been unmapped.

@hangpark hangpark added this to the Project #3-2 milestone May 20, 2017
@hangpark hangpark self-assigned this May 20, 2017
hangpark added a commit that referenced this issue May 20, 2017
hangpark added a commit that referenced this issue May 20, 2017
hangpark added a commit that referenced this issue May 20, 2017
[#133] Implement memory mapped files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant