CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 其他小程序 搜索资源 - 生产者-消费者问题

搜索资源列表

  1. 生产者消费者问题程序实现

    0下载:
  2. 所属分类:其他小程序

    • 发布日期:2008-12-21
    • 文件大小:1849110
    • 提供者:tankchuan
  1. produceConsumer

    0下载:
  2. 传统经典问题,生产者与消费者,船检了五个生产者。适合初学者这使用-Classical problem, producers and consumers, ship inspection of the five producers. This is suitable for beginners to use
  3. 所属分类:Other systems

    • 发布日期:2017-04-17
    • 文件大小:197307
    • 提供者:guoyansong
  1. jinchengtongbu

    0下载:
  2. 利用c++实现操作系统中进程同步中的经典问题——生产者与消费者问题的模拟实现过程。-Using c++ operating system processes to achieve a classic problem of synchronization- producers and consumers, the implementation process simulation problems.
  3. 所属分类:Other systems

    • 发布日期:2017-04-09
    • 文件大小:1254455
    • 提供者:天逸
  1. PROSUM

    0下载:
  2. 编程实现生产者-消费者问题。提示:生产者-消费者问题是一个实现线程同步的问题,生产者线程总是先运行,消费者线程在其后,两者交替运行,在程序中生产者线程和消费者线程可以共享数据,生产者线程为数据赋值,消费者线程将数据返回。可以利用创建Thread类的子类来实现。-Programming producer- consumer issues. Tip: Producer- Consumer problem is an implementation of thread synchronization
  3. 所属分类:Other systems

    • 发布日期:2017-04-14
    • 文件大小:4830
    • 提供者:朱蓉
  1. FIFO

    0下载:
  2. JAVA实现生产者与消费者问题 模拟PV操作-JAVA productor and consumer
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-14
    • 文件大小:3931
    • 提供者:安以轩
  1. ProducerAndConsumer

    0下载:
  2. 本程序模拟操作系统进程管理的程序。称为生产者和消费者问题-products and consumer
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:2278
    • 提供者:高山
  1. consumer-producer

    0下载:
  2. c语言。生产者消费者问题的信号量解决代码。简洁明了-c language. About consumer and producer.
  3. 所属分类:Other systems

    • 发布日期:2017-05-13
    • 文件大小:3552171
    • 提供者:申俊泽
  1. Producer_Consumer

    0下载:
  2. 关于死锁的问题,而生产者、消费者问题是死锁问题的一个比较经典的问题,此代码反映出死锁的一些方面。-On the deadlock problem, and the producer, consumer issues is the question of a more classic deadlock problem, this code reflects some aspects of the deadlock.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:37389
    • 提供者:liuting
  1. producer-and-consumer

    0下载:
  2. 生产者-消费者问题是典型的PV操作问题,假设系统中有一个比较大的缓冲池,生产者的任务是只要缓冲池未满就可以将生产出的产品放入其中,而消费者的任务是只要缓冲池未空就可以从缓冲池中拿走产品。缓冲池被占用时,任何进程都不能访问。-Producer- consumer problem is a typical PV operation, assume that the system has a relatively large pool, the producer s task is as long a
  3. 所属分类:Other systems

    • 发布日期:2017-04-01
    • 文件大小:4898
    • 提供者:李明
  1. ProducerConsumerProblem

    0下载:
  2. 生产者与消费者问题的模拟 需要的可以下载-Simulation needs of producers and consumers, the problem can be downloaded and see
  3. 所属分类:Other systems

    • 发布日期:2017-11-26
    • 文件大小:10404
    • 提供者:
  1. produceracustmer

    0下载:
  2. 生产者消费者问题,VS2010的WIN32控制台测试-Producers and consumers, VS2010 WIN32 console test
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-23
    • 文件大小:2873
    • 提供者:ruoqi
  1. shiyansan

    0下载:
  2. 实验三、生产者消费者问题 一个大小为3的缓冲区,初始为空 2个生产者 – 随机等待一段时间,往缓冲区添加数据, – 若缓冲区已满,等待消费者取走数据后再添加 – 重复6次 3个消费者 – 随机等待一段时间,从缓冲区读取数据 – 若缓冲区为空,等待生产者添加数据后再读取 – 重复4次-Third experiment, the producer of consumer issues a buffer of size 3, in
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:3368
    • 提供者:吴我
  1. Consumer

    0下载:
  2. 生产者消费者问题,非常好的C++源码,操作系统可以用-Producers and consumers, a very good C++ source operating system can use
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:1215
    • 提供者:zhh434
  1. ProducerConsumer

    0下载:
  2. 生产者消费者问题代码,使用java多线程技术-Producers and consumers of code, using java multithreading technology
  3. 所属分类:Other systems

    • 发布日期:2017-04-14
    • 文件大小:4323
    • 提供者:李他
  1. ProducerConsumer

    0下载:
  2. 生产者消费者问题(英语:Producer-consumer problem),也称有限缓冲问题(英语:Bounded-buffer problem),是一个多线程同步问题的经典案例。该问题描述了两个共享固定大小缓冲区的线程——即所谓的“生产者”和“消费者”——在实际运行时会发生的问题。生产者的主要作用是生成一定量的数据放到缓冲区中,然后重复此过程。与此同时,消费者也在缓冲区消耗这些数据。该问题的关键就是要保证生产者不会在缓冲区满时加入数据,消费者也不会在缓冲区中空时消耗数据。-Producers
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-23
    • 文件大小:7392887
    • 提供者:符舜
  1. MultithreadingRelated

    0下载:
  2. 多线程代码 经典线程同步互斥问题 生产者消费者问题 -Multithreading Related
  3. 所属分类:Other systems

    • 发布日期:2017-04-29
    • 文件大小:16420
    • 提供者:莫汉斌
  1. srb654

    0下载:
  2. 进程管理中的生产者消费者问题 只要是是描述进程管理中生产者与消费者-Producer consumer problem in process management As long as it is is describe the producers and consumers in the process management
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-18
    • 文件大小:7168
    • 提供者:pasming
  1. RTC学习 l 生产者消费者

    0下载:
  2. 基于RT_thread的线程间调度问题,运用信号量及互斥锁解决线程资源抢占问题(Producer consumer problem)
  3. 所属分类:其他

    • 发布日期:2018-01-06
    • 文件大小:26775552
    • 提供者:
  1. 典型死锁问题

    0下载:
  2. 包含了操作系统的三个死锁问题,哲学家问题,消费者生产者问题,管道等,解决方法。绝对可用。(It includes three deadlocks, philosophers, consumer producers, pipelines, and solutions to the operating system. It is absolutely available.)
  3. 所属分类:其他

    • 发布日期:2018-01-09
    • 文件大小:1024
    • 提供者:夜雨声F
  1. 1120151889-王佳升-3

    1下载:
  2. 北京理工大学操作系统设计实验3 -- 生产者消费者问题(OS3 Beijing Institute of Technology operation system design experiment 3 -- producer consumer problem.)
  3. 所属分类:其他

    • 发布日期:2018-05-01
    • 文件大小:579584
    • 提供者:啊啊啊吖哟
« 12 »
搜珍网 www.dssz.com