当前位置:
首页 资源下载
搜索资源 - producer consumer problem
搜索资源列表
-
0下载:
实现了以进程解决生产者消费者问题.适合初学者学习操作系统是学习-Implemented to process the producer consumer problem solving. Suitable for beginners to learn the operating system is to learn
-
-
0下载:
Fork: 实现了以进程解决生产者消费者问题.
pclone: 实现了以线程解决生产者消费者问题.
test_scheduler: 实现了处理机调度--实时调度算法EDF和RMS
store_scheduler: 实现了存贮管理--动态不等长存储资源分配算法
HashFile: 实现了文件系统--Hash结构文件
device: 实现了设备管理--Linux设备驱动程序安装(注意头文件的位置随环境不同而改变)-Fork: to achieve a solution to pr
-
-
0下载:
设计目的:通过研究Linux 的进程机制和信号量,实现生产者消费者问题的并发控制.
说明:有界缓冲区内设有20个存储单元,有界缓冲区可用数组实现,缓冲区中的内容自定。
设计要求:(1)每个生产者和消费者对有界缓冲区进行操作后,即时显示有界缓冲区的全部内容,当前指针位置和生产者/消费者进程标识符.(2)生产者和消费者至少各有两个以上.(3)多个生产者或多个消费者之间须有对缓冲区进行共享操作的函数代码(注意互斥与同步).-Design Objective: To study the mech
-
-
0下载:
VC实现生产者消费者问题新手一定要学习加油-VC to achieve producer-consumer problem
-
-
0下载:
Java语言来实现一个生产者消费者问题,可以作为课程设计使用。-Java language to realize a producer consumer problem, can use as a course design.
-
-
0下载:
此源代码使用的是C语言编写,可以实现操作系统中经典的生产者-消费者问题的验证-This source code is written in C can be achieved in the classic operating system producer- consumer problem verification
-
-
0下载:
简单的生产者消费者问题。应付课程设计足够-Simple producer-consumer problem
-
-
0下载:
应用c#解决生产者消费者问题的源码,界面清晰易懂,包含详细的说明文件-The application c# source code to solve producer-consumer problem, the interface is clear and easy to understand, contains a detailed documentation
-
-
0下载:
用c++实现生产者消费者问题的源码,界面清晰易懂,包含详细的说明文档-The source code of the producer-consumer problem with c++, the interface is clear and easy to understand, contains detailed documentation
-
-
0下载:
经典的操作系统生产者消费者问题,大多数都是控制台实现,我用的mfc实现了界面操作,结果操作简单易懂。-Mostly of the classic producer-consumer problem of the operating system console, I use the mfc interface operation, the result is straightforward.
-
-
0下载:
操作系统中的生产者—消费者问题,在Windows上实现-The producer- consumer problem, the operating system on Windows
-
-
0下载:
通过研究Linux的进程同步机制和信号量,实现生产者消费者问题的并发控制。-Through the study of Linux process synchronization mechanism and semaphores, concurrency control of the producer-consumer problem.
-
-
0下载:
、生产者-消费者问题是很经典很具有代表性的进程同步问题,计算机中的很多同步问题都可抽象为生产者-消费者问题,通过本实验的练习,希望能加深学生对进程同步问题的认识与理解 -The producer- consumer problem is a classic representative of the process is synchronization, computer synchronization problem can be abstracted as many producer- co
-
-
0下载:
关于操作系统的经典问题--消费者与生产者问题-Classic problem of the operating system- consumers and producers
-
-
0下载:
操作系统中运用pv操作等解决生产者-消费者问题-Operating system in use pv operation to solve the producer- consumer problem
-
-
0下载:
用两个线程,模拟生产者-消费者问题。能够自己控制缓存区的大小、生产者的速度、消费者的速度-Two threads to simulate the producer- consumer problem. Speed of being able to control the speed of the buffer size, producers, consumers
-
-
0下载:
用JAVA实现生产者消费者问题。生产者-消费者问题是一个经典的进程同步问题-Producers and consumers to achieve with JAVA. Producer consumer problem is a classical process synchronization problem
-
-
0下载:
操作系统实验一 进程的同步与互斥 生产者消费者问题-Synchronization and mutual exclusion producer consumer problem of operating system experiment process
-
-
0下载:
实现了生产者消费者的问题,通过调用系统函数随机产生字符对生产者消费者问题进行很好、直观的描述-Producers and consumers to realize the problem, randomly generated characters to be good producers and consumers, intuitive descr iption by calling the system function
-
-
0下载:
生产者消费者问题(英语:Producer-consumer problem),也称有限缓冲问题(英语:Bounded-buffer problem),是一个多线程同步问题的经典案例。该问题描述了两个共享固定大小缓冲区的线程——即所谓的“生产者”和“消费者”——在实际运行时会发生的问题。生产者的主要作用是生成一定量的数据放到缓冲区中,然后重复此过程。与此同时,消费者也在缓冲区消耗这些数据。该问题的关键就是要保证生产者不会在缓冲区满时加入数据,消费者也不会在缓冲区中空时消耗数据。-Producers
-