process.hpp 370 B

12345678910111213141516171819
  1. #pragma once
  2. #include <assert.h>
  3. #include <errno.h>
  4. #include <fcntl.h>
  5. #include <signal.h>
  6. #include <stdint.h>
  7. #include <sys/types.h>
  8. #include <types/allocator.hpp>
  9. #include <types/cplusplus.hpp>
  10. #include <types/path.hpp>
  11. #include <types/types.h>
  12. #include <kernel/interrupt.hpp>
  13. #include <kernel/mem/paging.hpp>
  14. #include <kernel/vfs.hpp>
  15. void NORETURN freeze(void);