wrapper.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /**
  2. * @file sched-wrapper.h
  3. * @author longjin ([email protected])
  4. * @brief 这是为调度器相关接口创建rust绑定的wrapper
  5. * @version 0.1
  6. * @date 2022-11-10
  7. *
  8. * @copyright Copyright (c) 2022
  9. *
  10. */
  11. #pragma once
  12. #include <common/blk_types.h>
  13. #include <common/completion.h>
  14. #include <common/crc16.h>
  15. #include <common/crc32.h>
  16. #include <common/crc64.h>
  17. #include <common/crc7.h>
  18. #include <common/crc8.h>
  19. #include <common/gfp.h>
  20. #include <common/glib.h>
  21. #include <common/kfifo.h>
  22. #include <common/kthread.h>
  23. #include <common/list.h>
  24. #include <common/lz4.h>
  25. #include <common/printk.h>
  26. #include <common/spinlock.h>
  27. #include <common/stdio.h>
  28. #include <common/string.h>
  29. #include <common/time.h>
  30. #include <common/unistd.h>
  31. #include <driver/disk/ahci/ahci.h>
  32. #include <driver/disk/ahci/ahci_rust.h>
  33. #include <driver/pci/pci.h>
  34. #include <driver/video/video.h>
  35. #include <driver/virtio/virtio.h>
  36. #include <include/DragonOS/refcount.h>
  37. #include <include/DragonOS/signal.h>
  38. #include <libs/libUI/textui.h>
  39. #include <mm/mm-types.h>
  40. #include <mm/mm.h>
  41. #include <mm/mmio.h>
  42. #include <mm/slab.h>
  43. #include <process/process.h>
  44. #include <sched/sched.h>
  45. #include <smp/smp.h>
  46. #include <time/sleep.h>