Reputation: 11
If I want to add my system call vfork(copy on write) what exactly need to be edited in syscall.c? Where would I add my fragment of vfork's code. In short, how would I implement vfork in xv6?
Upvotes: 1
Views: 593
Reputation: 610
For adding the system call in xv6's shell; amend the following files:
Also you can check the following link.
Upvotes: 1