1 Star 0 Fork 0

YexuanYang/easy_lab

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
uthread.h 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
Qiu Qichen 提交于 2023-10-30 21:49 . fix #3: typo of thread_destroy
#ifndef UTHREAD_H
#define UTHREAD_H
#include <stddef.h>
#define STACK_SIZE 4096
/// @brief 线程的状态
/// @param THREAD_INIT 初始化
/// @param THREAD_RUNNING 运行
/// @param THREAD_STOP 停止
/// @param THREAD_SUSPENDED 挂起
enum thread_state {
THREAD_INIT,
THREAD_RUNNING,
THREAD_STOP,
THREAD_SUSPENDED,
};
/// @brief 线程的上下文
struct context {
long long rip, rsp, rbp, rbx, r12, r13, r14, r15;
long long rdi, rsi, rdx;
};
/// @brief 线程的控制块
/// @param stack 栈
/// @param context 上下文
/// @param state 状态
/// @param name 名字
struct uthread {
char stack[STACK_SIZE];
struct context context;
enum thread_state state;
const char *name;
};
/// @brief 初始化系统,在main函数开始时调用
void init_uthreads();
/// @brief 主线程陷入调度器,阻塞
void schedule();
/// @brief 创建一个线程
/// @param func 线程的执行函数
/// @param arg 线程的参数
/// @param thread_name 线程的名字
struct uthread *uthread_create(void (*func)(void *), void *arg,const char* thread_name);
/// @brief 恢复线程
/// @param 线程的控制块
void uthread_resume(struct uthread *tcb);
/// @brief 线程主动让出
long long uthread_yield();
/// @brief 销毁线程的结构体
/// @param tcb 线程的控制块q
void thread_destroy(struct uthread *tcb);
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/gitee-yyx2020211226/easy_lab.git
git@gitee.com:gitee-yyx2020211226/easy_lab.git
gitee-yyx2020211226
easy_lab
easy_lab
lab1

搜索帮助