操作系统
操作系统笔记,实例
Minath_Tirith
njucs20级本科生
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
peterson算法(临界区管理)小例子
peterson算法是用软件实现临界区管理的算法 // multithread_count.c #include <ctype.h> #include <stdio.h> #include <stdlib.h> #include<stdbool.h> #include <unistd.h> #include <pthread.h> #define NUM 50000 int count = 0; bool inside[10]={原创 2022-04-28 11:25:54 · 820 阅读 · 0 评论 -
进程转换汇编小例子
操作系统进程转换的例子,熟悉下汇编原创 2022-03-04 16:56:57 · 288 阅读 · 0 评论
分享