CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 进程与线程 搜索资源 - producer consumer problem

搜索资源列表

  1. 生产者和消费者问题

    0下载:
  2. 操作系统经典的问题-生产者和消费者问题.C++编写.-OS classic problem-producer and consumer issues. C preparation.
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:3.44kb
    • 提供者:大包
  1. producter-and-consumer

    0下载:
  2. linux多线程编程,生产者消费者问题的c语言实现,模拟多线程编程资源抢占问题。-Linux multi-threaded programming, the producer-consumer problem, c language, analog multi-threaded programming resources to seize the problem.
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-09
    • 文件大小:1.07mb
    • 提供者:wangfeng
  1. producer-consumer-problem

    0下载:
  2. 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
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-23
    • 文件大小:93.82kb
    • 提供者:MidnightD
  1. cs

    0下载:
  2. 用多线程实现“生产者-消费者”问题。内含实验报告和实验源程序-Using multi-threading to achieve producer- consumer problem. The report contains experimental and experimental source
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-01
    • 文件大小:5.92kb
    • 提供者:ada
  1. thread

    0下载:
  2. 生产者消费者多线程问题,通过调用系统函数,来解决生产者消费者多线程问题。-Consumer producer problem of multi-threading, by calling the system function, to address the issue of multi-threaded producer consumer.
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-12
    • 文件大小:641byte
    • 提供者:zhang
  1. producerandconsumer

    2下载:
  2. 生产者-消费者问题: *设置两类线程,一类为生产者,一类为消费者; *设置生产者消费者数据结构; *使用菜单随机启动生产者或消费者; *在窗口上显示生产者或消费者的执行状态; *随着线程的执行,更新窗口的显示。 -Producer- Consumer problem:* Set up two threads, a category for producers, a category of consumers * Set up producers and consumers
  3. 所属分类:Process-Thread

    • 发布日期:2016-08-19
    • 文件大小:1.85mb
    • 提供者:macintosh
  1. ProducerandConsumer

    0下载:
  2. this program solve problem of producer/consumer on semaphors and mutex
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-31
    • 文件大小:882byte
    • 提供者:szamek
  1. producerandcustomer

    0下载:
  2. 用VC++实现生产者消费者问题,不过没有界面,也可作平时参考使用-Using VC++ to achieve the producer consumer problem, but no interface can also be used as normal reference
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-10
    • 文件大小:1.35kb
    • 提供者:凌夏
  1. ProducerAndConsumerSynchronization

    0下载:
  2. 生产者-消费者进程同步问题.生产者和消费者两个进程独立运行.-Producer- Consumer process synchronization problem. Producers and consumers operate independently of the two processes
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-17
    • 文件大小:47.31kb
    • 提供者:小白鲨
  1. make_use

    0下载:
  2. 使用C语言编写的生产者消费者的问题 使用了多线程 按PV操作实现-Using the C language, the producer consumer problem using multi-threaded operation to achieve by PV
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-31
    • 文件大小:782byte
    • 提供者:黄金芳
  1. philosophersproblem

    0下载:
  2. 利用多线程技术实现生产者-消费者问题以及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
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-05
    • 文件大小:5.57kb
    • 提供者:刘晨
  1. tongbuhuchi

    0下载:
  2. 实现并发线程之间的同步和互斥问题 解决一类典型的进程间同步问题,如生产者-消费者问题,读者-写者问题等-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
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-08
    • 文件大小:8.49kb
    • 提供者:
  1. The-problem-of-product-and-consume

    0下载:
  2. 生产者-消费者问题是一个经典的进程同步问题,该问题最早由Dijkstra提出,用以演示他提出的信号量机制。在同一个进程地址空间内执行的两个线程。生产者线程生产物品,然后将物品放置在一个空缓冲区中供消费者线程消费。消费者线程从缓冲区中获得物品,然后释放缓冲区。当生产者线程生产物品时,如果没有空缓冲区可用,那么生产者线程必须等待消费者线程释放出一个空缓冲区。当消费者线程消费物品时,如果没有满的缓冲区,那么消费者线程将被阻塞,直到新的物品被生产出来。-The producer- consumer qu
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-29
    • 文件大小:1.03kb
    • 提供者:岳豪
  1. p-and-c

    0下载:
  2. 在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
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-27
    • 文件大小:16.97kb
    • 提供者:凡亚东
  1. multithreadSyn

    0下载:
  2. 多线程同步,解决生产者消费者问题,应用临界区、互斥量、信号量等多种方式-Multi-thread synchronization to solve the producer consumer problem, apply the critical region, mutexes, semaphores and other methods
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-15
    • 文件大小:9.85kb
    • 提供者:lanyuna
  1. Thread

    0下载:
  2. VC实现生产者消费者问题新手一定要学习加油-VC to achieve producer-consumer problem
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-12
    • 文件大小:2.58mb
    • 提供者:文振兴
  1. producer-consumer

    0下载:
  2. 利用记录型信号量解决生产者-消费者问题 利用记录型信号量解决生产者-消费者问题-Record semaphore to solve the producer- consumer problem
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-24
    • 文件大小:1.36kb
    • 提供者:李丽
  1. processBasic

    0下载:
  2. 用c++实现生产者消费者问题的源码,界面清晰易懂,包含详细的说明文档-The source code of the producer-consumer problem with c++, the interface is clear and easy to understand, contains detailed documentation
  3. 所属分类:Process-Thread

    • 发布日期:2017-06-17
    • 文件大小:24.63mb
    • 提供者:王馨悦
  1. Producer_Consumer

    0下载:
  2. 我是编程小菜鸟= =,这是一个信号量互斥的经典问题,消费者生产者问题的简单实现,使用线程方式,所以在调试时须选择多线程方式。-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
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-09
    • 文件大小:1.82mb
    • 提供者:李宜核
  1. pv

    0下载:
  2. 使用多线程对生产者与消费者问题进行模拟;(Producer-consumer problem)
  3. 所属分类:进程与线程

    • 发布日期:2018-01-06
    • 文件大小:1kb
    • 提供者:fengxiaa
« 12 »
搜珍网 www.dssz.com