mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-08 14:16:47 +00:00
* 删除C版本的crc库 * 删除lockref * 删除过时的libc文档以及wait.c * 删除过时的C版本kfifo代码及文档 * 移除未用到的lz4库 * 删除内核的stdlib.c * 删除fabs.c * fmt * 使得put_string系统调用能够通过tty输出颜色 暂且这样改,这一部分应该是用户层面提供的功能,后续删除 --------- Co-authored-by: GnoCiYeH <heyicong@dragonos.org>
33 lines
731 B
C
33 lines
731 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/glib.h>
|
|
#include <common/printk.h>
|
|
#include <common/spinlock.h>
|
|
#include <common/stdio.h>
|
|
#include <common/string.h>
|
|
#include <common/time.h>
|
|
#include <common/unistd.h>
|
|
#include <driver/multiboot2/multiboot2.h>
|
|
#include <libs/lib_ui/textui.h>
|
|
#include <mm/mm.h>
|
|
#include <mm/mmio.h>
|
|
#include <mm/slab.h>
|
|
#include <process/process.h>
|
|
#include <sched/sched.h>
|
|
#include <smp/smp.h>
|
|
#include <time/clocksource.h>
|
|
#include <time/sleep.h>
|
|
#include <common/errno.h>
|
|
#include <common/cpu.h>
|