process.h 147 B

123456789101112131415
  1. #pragma once
  2. #include <kernel/mem.h>
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. struct process {
  7. struct mm* mm;
  8. };
  9. #ifdef __cplusplus
  10. }
  11. #endif