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 All xv6 Syscalls #28

Open
29 of 42 tasks
tjhu opened this issue Aug 25, 2020 · 0 comments
Open
29 of 42 tasks

Implement All xv6 Syscalls #28

tjhu opened this issue Aug 25, 2020 · 0 comments
Assignees
Labels
rv6 Issues related to rv6(userspace xv6 in Rust)

Comments

@tjhu
Copy link
Contributor

tjhu commented Aug 25, 2020

Implement all of the of xv6 syscalls and their proxies in rv6.

  1. SYS_fork(merge with exec as sys_spawn_domain)
    • syscall
    • proxy
  2. SYS_exit(need discussion)
    • syscall
    • proxy
  3. SYS_wait(implemented as Thread::join)
    • syscall
    • proxy
  4. SYS_pipe
    • syscall
    • proxy
  5. SYS_read
    • syscall
    • proxy
  6. SYS_kill
    • syscall
    • proxy
  7. SYS_exec
    • syscall
    • proxy
  8. SYS_fstat
    • syscall
    • proxy
  9. SYS_chdir
    • syscall
    • proxy
  10. SYS_dup
    • syscall
    • proxy
  11. SYS_getpid
    • syscall
    • proxy
  12. SYS_sbrk(no need; we use memory allocator)
    • syscall
    • proxy
  13. SYS_sleep(for ns instead for ticks)
    • syscall
    • proxy
  14. SYS_uptime
    • syscall
    • proxy
  15. SYS_open
    • syscall
    • proxy
  16. SYS_write
    • syscall
    • proxy
  17. SYS_mknod
    • syscall
    • proxy
  18. SYS_unlink
    • syscall
    • proxy
  19. SYS_link
    • syscall
    • proxy
  20. SYS_mkdir
    • syscall
    • proxy
  21. SYS_close
    • syscall
    • proxy
@tjhu tjhu added the rv6 Issues related to rv6(userspace xv6 in Rust) label Aug 25, 2020
@tjhu tjhu self-assigned this Aug 25, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
rv6 Issues related to rv6(userspace xv6 in Rust)
Projects
None yet
Development

No branches or pull requests

1 participant