操作系统c代码
文章平均质量分 57
littlewhite_yu
这个作者很懒,什么都没留下…
展开
-
操作系统c语言实现进程同步与互斥代码
使用DEV C++打开:这是进程同步与互斥代码,第一次自己写的,写得不好多多支持 #include<stdio.h> #include<windows.h> #include<string> using namespace std; FILE* fw; HANDLE event; char s[1]={'w'}; void suo(){ WaitForSingleObject(event,INFINITE); } DWORD athread(LPVOID p)...原创 2021-01-04 09:43:46 · 3644 阅读 · 0 评论 -
操作系统c语言实现最近最优(置换)代码
#include<stdio.h> #define MAX 100 int judge(int c[],int a,int b) { int i; for(i=0;i<a;i++) if(b==c[i]) return i; return -1; } void init(int c[],int a) { int i; for(i=0;i<a;i++) c[i...原创 2021-01-04 09:24:47 · 326 阅读 · 0 评论 -
操作系统c语言实现银行家算法代码
#include <stdio.h> int curr[5][5], maxclaim[5][5], avl[5]; int alloc[5] = {0, 0, 0, 0, 0}; int maxres[5], running[5], safe=0; int count = 0, i, j, exec, r, p, k = 1; int main() { printf("\nEnter the number of processes: "); scanf("%d", &...原创 2021-01-04 09:18:51 · 1105 阅读 · 0 评论