syscall.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #pragma once
  2. #include <stdint.h>
  3. // 系统调用号
  4. #define SYS_NOT_EXISTS 0
  5. #define SYS_PUT_STRING 1
  6. #define SYS_OPEN 2
  7. #define SYS_CLOSE 3
  8. #define SYS_READ 4
  9. #define SYS_WRITE 5
  10. #define SYS_LSEEK 6
  11. #define SYS_FORK 7
  12. #define SYS_VFORK 8
  13. #define SYS_BRK 9
  14. #define SYS_SBRK 10
  15. #define SYS_REBOOT 11 // 重启
  16. #define SYS_CHDIR 12 // 切换工作目录
  17. #define SYS_GET_DENTS 13 // 获取目录中的数据
  18. #define SYS_EXECVE 14 // 执行新的应用程序
  19. #define SYS_WAIT4 15 // 等待进程退出
  20. #define SYS_EXIT 16 // 进程退出
  21. #define SYS_MKDIR 17 // 创建文件夹
  22. #define SYS_NANOSLEEP 18 // 纳秒级休眠
  23. #define SYS_CLOCK 19 // 获取当前cpu时间
  24. #define SYS_PIPE 20
  25. #define SYS_MSTAT 21 // 获取系统的内存状态信息
  26. #define SYS_UNLINK_AT 22 // 删除文件夹/删除文件链接
  27. #define SYS_KILL 23 // kill一个进程(向这个进程发出信号)
  28. #define SYS_SIGACTION 24 // 设置进程的信号处理动作
  29. #define SYS_RT_SIGRETURN 25 // 从信号处理函数返回
  30. #define SYS_GETPID 26 // 获取当前进程的pid(进程标识符)
  31. #define SYS_DUP 28
  32. #define SYS_DUP2 29
  33. /**
  34. * @brief 用户态系统调用函数
  35. *
  36. * @param syscall_id
  37. * @param arg0
  38. * @param arg1
  39. * @param arg2
  40. * @param arg3
  41. * @param arg4
  42. * @param arg5
  43. * @param arg6
  44. * @param arg7
  45. * @return long
  46. */
  47. long syscall_invoke(uint64_t syscall_id, uint64_t arg0, uint64_t arg1, uint64_t arg2, uint64_t arg3, uint64_t arg4,
  48. uint64_t arg5, uint64_t arg6, uint64_t arg7);