搜索资源列表
进程控制实验
- 操作系统实验,进程控制实验,Process.exe为父进程执行程序ChildProcess.exe为子进程执行的程序 该程序实现了进程间的消息通信,共享储存区通信以及管道通信-experimental operating system, process control experiments, Process.exe designation process ChildProcess.exe procedures for the implementation of the process-th
DLLCallDemo
- 操作系统上机实验报告,进程间的通信,1. 选择Windows2000环境提供的进程通信工具:文件映射(filemap)、管道(Pipe或NamedPipe)、套接字(socket)完成同一机器上的两个进程、不同机器上的两个进程或不同操作系统下的两个进程之间的通信。-experimental operating system on the plane, inter-process communication, 1. Choose Windows 2000 environment, the proc
zhilin5832
- 操作系统课程上机实验报告,包括进程通信,同步等
操作系统进程管理
- 本次程序的题目为:进程管理——支持多个进程并发运行的简单的进程管理模拟系统,对本实验的分析要求是:⑴系统中的同步机构采用信号量上的P、V操作的机制;⑵控制机构包括阻塞和唤醒操作;⑶时间片中断处理程序处理模拟的时间片中断;⑷进程调度程序负责为各进程分配处理机;⑸根据用户的需求来创建n个进程(n为即满足用户需求,又不超出系统可容的最大进程数),各进程互斥地访问使用临界资源 S1、S2;⑹使用动态优先数(如:随阻塞次数的增加而减小优先数,以提高其优先权);⑺进程结束后应能够撤消;⑻进程间能实现“发送”
R_WPublem.rar
- 操作系统课程设计:生产者消费者程序,windows环境,Visual C++开发工具,实现进程通信,Operating systems curriculum design: the producer consumer program, windows environment, Visual C++ development tools, to achieve the process of communication
lab2
- 操作系统实验报告 关于父子进程通信的实验报告 -Experimental report on the process of the operating system to communicate son lab report
jinchengtongxin
- 操作系统中进程之间的通信,用PV操作实现进程间的同步或者互斥控制-Operating system in the process of communication between, the PV operation to achieve inter-process synchronization, or mutually exclusive control
Theprocessofcommunication
- 高校计算机学院操作系统课程关于进程通信的程序范例-University College of the operating system of computer programs on the example of the process of communication procedures
uCOS
- uc/os实时操作系统的应用,包括任务建立、进程管理与通信-uc/os application of real-time operating system, including the establishment of the task, process management and communication
linux--os
- os实验源代码,共八个。。 有文件管理、内存管理、进程通信-os experiment source code, a total of eight. . There are document management, memory management, process communications and so on. . .
okl4_3.0.tar
- 微内核结构源码,内核中有几种基本的机制,如地址空间、进程通信、内存管理等,文件系统、驱动等作为服务在用户态。 -microkernel
os
- 操作系统实验 进程间基于消息队列的通信 编写一段程序,同时父进程创建两个子进程p1和p2;并使子进程p1与子进程p2通过共享存储区相互发送数据(512字节)。 -Experimental operating system message queue-based inter-process communication
osruanzhongduan
- 操作系统实验 进程软中断通信 编写一段程序,父进程创建一个子进程p1;并使子进程利用系统调用kill()向父进程发送信号,父进程得到信号后输出字符串“received p1 signal.” 。 -Experimental process, the operating system write a soft interrupt communication procedures, the parent creates a child process p1 and to the child pro
caozuoxitong
- 课设操作系统,实现内核加载、内核初始化、进程、进程调度、进程通信、输入输出系统、多任务多控制台等模块。-Lesson set up the operating system, to achieve the kernel load, kernel initialization, process, process scheduling, process communication, input and output systems, multi-task multi-console and othe
os-lcx
- 操作系统实验,完成内核加载、内核初始化、进程、进程调度、进程通信、输入输出系统、多任务多控制台等模块。-Experimental operating system to complete the kernel load, kernel initialization, process, process scheduling, process communication, input and output systems, multi-task multi-console and other mod
OS_Simulator.zip
- 操作系统课程设计,包括进程通信,文件管理,进程调度,Courses on operating system design, including process communication, file management, process scheduling
Process-management-simulation
- 为每个进场的PCB数据结构增加一个消息区域,添加相应的进程通信功能。在主程序中添加相应代码进行一些进程间的消息传递。 -For each entry of the PCB data structure to add a message area, add the appropriate process communication functions. Add the appropriate code in the main program some interprocess messagin
进程通信
- 进程通信 socket进程通信 内含四个源代码 和实验说明(Contains four source code and experimental instructions)
a
- 编制一个程序,使其实现进程的软中断通信。父进程发信号控制子程序的终止。 使用系统调用fork()创建两个子进程,再用系统调用signal()让父进程捕捉键盘上的中断信号;当捕捉到中断信号后,父进程用系统调用Kill()向两个子进程发出信号,子进程捕捉到信号后分别输出下列信息后终止: Child Proeess 1 is Killed by Parent! Child Process 2 is Killed by Parent! 父进程等待两个子进程终止后,输出如下的信息
OS课程设计
- 本科操作系统课程设计实现管道通信 通过在两个进程间创建通道,一个写信息通过通道传送给另一个进程并且读出来(pipeline communication)