mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-10 20:36:48 +00:00
* rust重构mmio_buddy和mmio * mmio-buddy文档 --------- Co-authored-by: longjin <longjin@RinGoTek.cn>
38 lines
932 B
C
38 lines
932 B
C
/**
|
|
* @file sched-wrapper.h
|
|
* @author longjin (longjin@RinGoTek.cn)
|
|
* @brief 这是为调度器相关接口创建rust绑定的wrapper
|
|
* @version 0.1
|
|
* @date 2022-11-10
|
|
*
|
|
* @copyright Copyright (c) 2022
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
#include <common/blk_types.h>
|
|
#include <common/completion.h>
|
|
#include <common/crc16.h>
|
|
#include <common/crc32.h>
|
|
#include <common/crc64.h>
|
|
#include <common/crc7.h>
|
|
#include <common/crc8.h>
|
|
#include <common/gfp.h>
|
|
#include <common/glib.h>
|
|
#include <common/kfifo.h>
|
|
#include <common/kthread.h>
|
|
#include <common/list.h>
|
|
#include <common/lz4.h>
|
|
#include <common/printk.h>
|
|
#include <common/spinlock.h>
|
|
#include <common/time.h>
|
|
#include <common/unistd.h>
|
|
#include <driver/disk/ahci/ahci.h>
|
|
#include <include/DragonOS/refcount.h>
|
|
#include <include/DragonOS/signal.h>
|
|
#include <mm/mm.h>
|
|
#include <mm/slab.h>
|
|
#include <process/process.h>
|
|
#include <sched/sched.h>
|
|
#include <time/sleep.h>
|
|
#include <mm/mm-types.h> |