搜索资源列表
the-producer---consumer-problem
- 模拟PV操作同步机构,且用PV操作解决生产者——消费者问题-PV operation synchronization, simulation, and the use of PV operation to solve the producer- consumer problem
Clock
- 大学计算机操作系统课程设计,完成页面置换功能,利用clock算法-University computer operating system curriculum design, complete page replacement function, the use of clock algorithm
clock
- 关于操作系统clock内存调度代码,描述Clock算法的基本原理、必要的数据结构、编码实现-Scheduling memory clock on the operating system code, Clock algorithm describes the basic principles of the necessary data structure, coding to achieve
workplace
- 是关于页面替换算法的代码模拟,用了三种算法,先进先出,第二次机会,时钟算法-Is on the page replacement algorithm code simulation, using the three algorithms, FIFO, a second chance, the clock algorithm
The_Linux_Kernel_API
- linux 内核的api函数介绍,涉及网络、驱动、文件系统等等各个方面,是linux 内核编程不可多得的参考手册。-all kinds of linux kernel api that involve the network, drivers, file system, and so on all aspects of linux kernel is a rare reference manual programming.
Morgan-Kaufmann-Computer-Architecture
- Computer technology has made incredible progress in the roughly 55 years since the first general-purpose electronic computer was created. Today, less than a thousand dollars will purchase a personal computer that has more performance, more main
The-essence-of-the-operating-system-
- 操作系统精髓与设计原理(第五版)课后答案英文原版,包含了中文版没有的内容-The essence of the operating system and design principles (Fifth Edition) After the answer. Pdf
the-operating-system-kernel
- 这个是操作系统内核开发毕业设计答辩时用的幻灯片-This is the operating system kernel with a graduation slide reply
the-operating_system_report
- 用C++语言编写的4个小类型的操作系统课程实验。分别为用户接口实验,进程管理实验,存储器管理实验,和文件系统实验。内附源工程和实验报告。-Written in C++ language, the four small type of operating system course experiment. Experimental user interface, respectively, process management experiments, memory management expe
the-arithmetic-of-bank
- 银行家算法 安全性检测 操作系统经典实验-the arithmetic of bank
The-file-system-simulation-program
- 使用C语言编写的文件系统模拟程序,体现了文件系统的结构与原理,学习操作系统很有用!-Use written in C language of the file system, a simulation program reflects the file system, study the structure and principle of operating system is very useful!
The-operating-system
- 操作系统最经典三张纸,贡献出来分享一下,希望对大家有帮助-The operating system the most classic three pieces of paper
the-os-guide-explored
- 讲述了操作系统从加电到选择操作系统的过程,从硬件执行和程序运行的角度进行了描述-Tells the story of the operating system to choose from, electric operating system process, from hardware to run the program execution and the Angle of the descr iption
Simulate-the-operating-system
- 实现模拟操作系统,包含进程管理、设备管理、内存管理等功能-Simulate the operating system, including process management, equipment management, memory management, and other functions
The-barber
- 基于操作系统的,理发师睡觉的问题,关于信号量的问题-Based on the operating system, the barber sleep problems, about the amount of signal
The-banker
- 银行家算法我知道了它是避免死锁的一种重要方法,本实验要求用高级语言编写和调试一个简单的银行家算法程序。通过这个实验我体会和了解死锁和避免死锁的具体实施方法更加深了解有关资源申请、避免死锁等概念。死锁的产生,必须同时满足四个条件,互斥条件,请求和保持条件,不剥夺条件,环路等待条件只要破坏上述四个条件中除去互斥资源的条件外系统就不会发生死锁。通过这个算法可用解决生活中的实际问题。-The banker' s algorithm, I know it is an important method
Course-of-the-stored-procedure
- 选课的存储过程已选过,无需重选时间产生冲突,请重新选择-Course of the stored procedure has been chosen, without having to re-election conflict, please re-select
Simulate-the-DOS
- 模拟DOS操作系统 新手制造 必属渣滓-Simulate the DOS
The-operating-system-after-class
- 操作系统答案,计算机专业的经典专业课程。包括进程管理,存储器管理,输入输出管理等-Answer to the operating system, computer professional, classic professional courses. Including process management, memory management, input and output management
require-the-use-of-a-linked-
- 题目说明: 要求采用链表形式,求两个一元多项式的乘积:h3 = h1*h2。函数原型为:void multiplication( NODE * h1, NODE * h2, NODE * h3 )。 输入: 输入数据为两行,分别表示两个一元多项式。每个一元多项式以指数递增的顺序输入多项式各项的系数(整数)、指数(整数)。 例如:1+2x+x2表示为:<1,0>,<2,1>,<1,2>, 输