搜索资源列表

  1. PV1983619

    0下载:
  2. 采用超前检测的算法解决传统的生产者消费者问题中的死锁情况,并含有详细的设计文档和测试程序-using advanced detection algorithms to solve the traditional problems of the producers and consumers of deadlock, and contains detailed design documentation and testing proced
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:102610
    • 提供者:yhl
  1. caozuoxitongkechengsheji

    0下载:
  2. 实现了生产者消费者问题和实现银行家算法
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:75949
    • 提供者:易朝晖
  1. p_c.win-linux

    0下载:
  2. 基于进程与共享主存实现的生产者消费者问题(Windows/Linux)。与网络上可以下载到的大多数生产者消费者问题模拟程序不同,本程序使用进程(而非线程)模拟,基于共享内存读写“产品”。同时给出了Windowst和Linux下实现的源代码,使用gcc编译通过。详细参见:http://blog.sina.com.cn/s/blog_53773b5f01000a1j.html
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:28858
    • 提供者:林健
  1. index

    0下载:
  2. 多进程同步方通过研究Linux 的进程机制和信号量实现生产者消费者问题的并发控制.法解决生产者-消费者问题
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:2101
    • 提供者:李玉强
  1. 进程间同步的研究

    0下载:
  2. 本文从信号量、管程和消息传递三个方面讨论了进程间的同步问题,并分别给出了关于生产者/消费者问题的解决算法,最终还分析了以上三种方法的优缺点。-signal from the amount of paper tube and messaging three discussed the process of synchronization and were given on the producer / consumer problem s
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:125201
    • 提供者:Gavin
  1. sczxfzcx

    0下载:
  2. window下的生产者消费者程序 1、实验环境 本实验是在win2000+VC6.0环境下实现的,利用Windows SDK编制实例程序。所以试验需要在windows下安装VC后进行。VC是一个集成开发环境,其中包含了Windows SDK所有工具和定义;所以安装了VC后就不用特意安装SDK了。 2、实现步骤 (1) 打开VC,选择菜单项file->new,选择projects选项卡并建立一个名为" R_WP1"的
  3. 所属分类:其他小程序

    • 发布日期:2024-05-20
    • 文件大小:11264
    • 提供者:wanghui
  1. index

    0下载:
  2. 多进程同步方通过研究Linux 的进程机制和信号量实现生产者消费者问题的并发控制.法解决生产者-消费者问题-Synchronous multi-process Linux through the process of research the mechanisms and signal volume producers realize concurrency control on consumer issues. Method to s
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-20
    • 文件大小:2048
    • 提供者:李玉强
  1. procon

    0下载:
  2. 试验目的:通过研究Linux的线程机制和信号量实现生产者消费者问题的并发控制,windows环境下运行-Test Objective: To study the mechanisms and thread Linux Semaphore producers to achieve concurrency control on consumer issues, windows environment running
  3. 所属分类:进程与线程

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:吕璐
  1. cs

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

    • 发布日期:2024-05-20
    • 文件大小:6144
    • 提供者:ada
  1. product_consumer

    0下载:
  2. 生产者消费者问题。使用3个信号量。其中2个信号量avail和full解决同步问题。还有一个mutex解决互斥问题-Producers of consumer issues. The use of three semaphores. One volume of two signals simultaneously avail and full settlement of the issue. There is also a solutio
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:孙雪春
  1. caozuoxitong

    0下载:
  2. 程序实现了两个生产者和两个消费者的生产者消费者问题(当生产者消费者数目再多时加上几个子进程就可以了)为了防止程序陷入死循环,给生产者限定了生产次数,同时为了方便截图,将次数限定的比较少。下面是我的程序:-Program has achieved two producers and two consumers and producers of consumer issues (when the number of producers a
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-20
    • 文件大小:62464
    • 提供者:曾华
  1. PROSUM

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

    • 发布日期:2024-05-20
    • 文件大小:5120
    • 提供者:朱蓉
  1. semaphore

    0下载:
  2. linux下邮箱方式进行进程通信的代码和实验报告,用P.V原语实现通信中的同步问题。运用生产者与消费者模型设计实现一个简单的信箱。-approach to the process under linux mail communications code and test reports, using PV primitives to achieve communication in the synchronization problem
  3. 所属分类:进程与线程

    • 发布日期:2024-05-20
    • 文件大小:14336
    • 提供者:yangdingda
  1. Productor-Consumer

    0下载:
  2. 利用Java的多线程机制很好的处理生产者—消费者这个经典问题!有助于对生产者-消费者问题的理解和Java多线程机制的掌握!-Use of Java multithreading handled well producer- consumer this classic problem! Contribute to the producer- consumer understanding of the issues and multi-th
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-20
    • 文件大小:6144
    • 提供者:紫风
  1. BarberAndCustomer

    0下载:
  2. 1)用C语言或C++语言编程实现P、V原语并用P、V原语描述如下生产者-消费者问题: 有一个理发师,一把理发椅和n把提供给等候理发的顾客座的椅子。如果没有顾客,则理发师便在理发椅子上睡觉;当第一个顾客到来时,必须唤醒该理发师进行理发;如果理发师正在理发时又有顾客到来,则如果有空椅子可坐,他就坐下来等待,如果没有空椅子,他就离开理发店。 为理发师和顾客各编一段程序描述他们的行为,要求不能带有竞争条件,试用P、V操作实现。
  3. 所属分类:进程与线程

    • 发布日期:2024-05-20
    • 文件大小:3426304
    • 提供者:陈天龙
  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 pr
  3. 所属分类:进程与线程

    • 发布日期:2024-05-20
    • 文件大小:8192
    • 提供者:
  1. OS

    0下载:
  2. 本学期操作系统的两次试验打包,银行家算法,PV操作中的哲学家就餐问题和生产者消费者问题,小程序仅供参考~-This semester, two tests of the operating system package, bankers algorithm, PV operation of the dining philosophers problem and producers of consumer issues, small pr
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-20
    • 文件大小:4096
    • 提供者:wang
  1. PV

    0下载:
  2. 用多线程实现“生产者-消费者问题”本作业要求设计并实现一个进程,该进程拥有一个生产者线程和一个消费者线程,它们使用N个不同的缓冲区(N为一个自定义的确定的数值,例如N=32)。你需要使用如下信号量:一个互斥信号量,用以阻止生产者线程和消费者线程同时操作缓冲区列表;一个信号量,当生产者线程生产出一个物品时可以用它向消费者线程发出信号;一个信号量,消费者线程释放出一个空缓冲区时可以用它向生产者线程发出信号; -Achieved with
  3. 所属分类:进程与线程

    • 发布日期:2024-05-20
    • 文件大小:1953792
    • 提供者:panwang
  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
  3. 所属分类:进程与线程

    • 发布日期:2024-05-20
    • 文件大小:17408
    • 提供者:凡亚东
  1. Produce_Consume_Pthread

    0下载:
  2. 利用各自操作系统提供的Mutex和信号量机制(Win32 API或Pthreads),实现生产者/消费者问题-Provided by each operating system Mutex and semaphore mechanism (Win32 API or Pthreads), to achieve the producer/consumer problem
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-20
    • 文件大小:3400704
    • 提供者:赵阳
« 1 2 3 4 5 6 7 89 »

源码中国 www.ymcn.org