搜索资源列表
-
0下载:
操作系统经典的问题-生产者和消费者问题.C++编写.-OS classic problem-producer and consumer issues. C preparation.
-
-
0下载:
linux多线程编程,生产者消费者问题的c语言实现,模拟多线程编程资源抢占问题。-Linux multi-threaded programming, the producer-consumer problem, c language, analog multi-threaded programming resources to seize the problem.
-
-
0下载:
Introduction
In this project, we will design a programming solution to the bounded-buffer problem using the producer and consumer processes . The solution uses three semaphores: empty and full, which count the number of empty and full slots
-
-
0下载:
用多线程实现“生产者-消费者”问题。内含实验报告和实验源程序-Using multi-threading to achieve producer- consumer problem. The report contains experimental and experimental source
-
-
0下载:
生产者消费者多线程问题,通过调用系统函数,来解决生产者消费者多线程问题。-Consumer producer problem of multi-threading, by calling the system function, to address the issue of multi-threaded producer consumer.
-
-
2下载:
生产者-消费者问题:
*设置两类线程,一类为生产者,一类为消费者;
*设置生产者消费者数据结构;
*使用菜单随机启动生产者或消费者;
*在窗口上显示生产者或消费者的执行状态;
*随着线程的执行,更新窗口的显示。
-Producer- Consumer problem:* Set up two threads, a category for producers, a category of consumers * Set up producers and consumers
-
-
0下载:
this program solve problem of producer/consumer on semaphors and mutex
-
-
0下载:
用VC++实现生产者消费者问题,不过没有界面,也可作平时参考使用-Using VC++ to achieve the producer consumer problem, but no interface can also be used as normal reference
-
-
0下载:
生产者-消费者进程同步问题.生产者和消费者两个进程独立运行.-Producer- Consumer process synchronization problem.
Producers and consumers operate independently of the two processes
-
-
0下载:
使用C语言编写的生产者消费者的问题 使用了多线程 按PV操作实现-Using the C language, the producer consumer problem using multi-threaded operation to achieve by PV
-
-
0下载:
利用多线程技术实现生产者-消费者问题以及n个哲学家就餐问题,其中生产者或消费者或哲学家用不同线程实现-Using multi-threading technology producer- consumer issues and the n-dining philosophers problem, in which the producer or consumer or a philosopher to achieve a different thread
-
-
0下载:
实现并发线程之间的同步和互斥问题
解决一类典型的进程间同步问题,如生产者-消费者问题,读者-写者问题等-To achieve synchronization between concurrent threads and the mutex problem solving process of a class of synchronization between the typical problems, such as the producer- consumer issues, reade
-
-
0下载:
生产者-消费者问题是一个经典的进程同步问题,该问题最早由Dijkstra提出,用以演示他提出的信号量机制。在同一个进程地址空间内执行的两个线程。生产者线程生产物品,然后将物品放置在一个空缓冲区中供消费者线程消费。消费者线程从缓冲区中获得物品,然后释放缓冲区。当生产者线程生产物品时,如果没有空缓冲区可用,那么生产者线程必须等待消费者线程释放出一个空缓冲区。当消费者线程消费物品时,如果没有满的缓冲区,那么消费者线程将被阻塞,直到新的物品被生产出来。-The producer- consumer qu
-
-
0下载:
在Windows和Linux操作系统上,利用各自操作系统提供的Mutex和信号量机制(Win32 API或Pthreads),实现生产者/消费者问题-In the Windows and Linux operating systems, the use of their operating system provided Mutex and semaphore mechanism (Win32 API or Pthreads), to achieve the producer/consumer
-
-
0下载:
多线程同步,解决生产者消费者问题,应用临界区、互斥量、信号量等多种方式-Multi-thread synchronization to solve the producer consumer problem, apply the critical region, mutexes, semaphores and other methods
-
-
0下载:
VC实现生产者消费者问题新手一定要学习加油-VC to achieve producer-consumer problem
-
-
0下载:
利用记录型信号量解决生产者-消费者问题
利用记录型信号量解决生产者-消费者问题-Record semaphore to solve the producer- consumer problem
-
-
0下载:
用c++实现生产者消费者问题的源码,界面清晰易懂,包含详细的说明文档-The source code of the producer-consumer problem with c++, the interface is clear and easy to understand, contains detailed documentation
-
-
0下载:
我是编程小菜鸟= =,这是一个信号量互斥的经典问题,消费者生产者问题的简单实现,使用线程方式,所以在调试时须选择多线程方式。-I was programming a small rookie = = This is a classic problem of mutual exclusion semaphores, producer consumer problem s simple implementation, using threads, so when debugging multith
-
-
0下载:
使用多线程对生产者与消费者问题进行模拟;(Producer-consumer problem)
-