-
Notifications
You must be signed in to change notification settings - Fork 3
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 dup3 syscall #104
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to add test case
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We'd better to include test files at this point even things like exec
would block testing.. This could help us test when other things has been fixed
I've fixed dup2 on #117. I think the implementation of dup3 could be something like:
|
I have implement dup3 syscall, there are three functionality for dup3. First, dup3 have the functionality of dup2. Second, dup3 support O_CLOEXEC which is close newfd when it exec. Third, dup3 return error EINVAL if oldfd equal to newfd. Since there are issue with exec syscall right now I can only test the first and third functionality. The second functionality should work by logic but I need to wait for exec syscall.