CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - mutual exclusion

搜索资源列表

  1. OSWORK01

    0下载:
  2. 第一次用MFC写进程同步与互斥,生产者与消费者问题 -the first to write MFC process synchronization and mutual exclusion, producer and consumer issues
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:34271
    • 提供者:哈哈哈
  1. 加锁法 解决两个进程合作累加数组

    0下载:
  2. 用加锁的方法解决两个进程累加数组的互斥问题-locked with two ways to solve the array of cumulative process Mutual Exclusion
  3. 所属分类:Static控件

    • 发布日期:2008-10-13
    • 文件大小:277167
    • 提供者:童仝
  1. Mini FtpServer

    0下载:
  2. 一个演示工作原理命令的ftp服务器程序,使用信号量和临界区解决多线程的同步和互斥问题 -a demonstration of principle orders ftp server, the use of volume and signal to solve critical multithreading and synchronization of Mutual Exclusion
  3. 所属分类:Ftp服务器

    • 发布日期:2008-10-13
    • 文件大小:21332
    • 提供者:胡军
  1. ossue

    0下载:
  2. 在Windows环境下,参考Windows环境下线程同步、互斥操作的例子,利用基本的文件操作系统调用,模拟读写问题。编写相应的函数,建立一个记录型的共享文件,并实现对该共享文件的打开、关闭、删除、读、追加记录、删除记录等操作。同时要求利用进程的同步与互斥机制实现多个用户进程对该文件的并发访问-the Windows environment, Windows environment reference thread synchronization, contradict operation exa
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:9095
    • 提供者:苏匀
  1. jchc

    0下载:
  2. 以生产者/消费者模型为依据,在Windows 2000环境下创建一个控制台进程,在该进程中创建n个线程模拟生产者和消费者,实现进程(线程)的同步与互斥。-to producer / consumer model as the basis, in Windows 2000 to create an environment console process, in the process of creating n threads simulation producers and consumers
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:3130
    • 提供者:飞翔
  1. Vbyclwf

    0下载:
  2. Visual Basic实现程序互斥运行的方法-Visual Basic procedures for the operation of Mutual Exclusion
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:2084
    • 提供者:wflee
  1. java_threaddemo

    0下载:
  2. 哲学家就餐是一个经典的Java多线程编程的实例,这是图形版。涉及到线程同步与互斥,临界区访问问题以及避免死锁的方法。 -Dining philosophers is a classic multi-threaded Java programming examples, this is the graphics version. Related to thread synchronization and mutual exclusion, critical area to visit, as we
  3. 所属分类:Java Develop

    • 发布日期:2017-04-01
    • 文件大小:108024
    • 提供者:丁丁
  1. Linux_Kernel

    0下载:
  2. Linux中各种内核态程序的编写,这是某个人的编程心得,里面有源代码,内容涉及互斥锁、信号量、多线程等,很不错的,值得参考!-Linux Kernel in a variety of procedures for the preparation of state, this is a personal experience of programming, which source code, which relates to mutual exclusion locks, semaphores,
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-29
    • 文件大小:134156
    • 提供者:Jackson
  1. clocksync123

    0下载:
  2. This brief doccumentation done on the clock syncronasation in distributed systems.ths includes algorithem for physical and logical clocks and mutual exclusion.-This is brief doccumentation done on the clock syncronasation in distributed systems.ths i
  3. 所属分类:Document

    • 发布日期:2017-03-28
    • 文件大小:557291
    • 提供者:mana
  1. SemaDemo

    0下载:
  2. 英国帝国理工学院电脑系多线程课程教学材料之四 ---- 用Semaphores互斥访问-The program uses a semaphore to ensure that it is not possible for threads to enter their critical sections at the same time. The critical section is represented by a light blue (cyan) colour. To execute in
  3. 所属分类:Java Develop

    • 发布日期:2017-04-14
    • 文件大小:3490
    • 提供者:Key
  1. Toachievemutualexclusionandsynchronizationprocess.

    0下载:
  2. 一个操作系统的试验,实现了两进程的同步和互斥,还有试验报告哦。-An operating system of the test, the realization of a two-process synchronization and mutual exclusion, as well as test report Oh.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-01
    • 文件大小:55017
    • 提供者:
  1. java_threaddemo

    0下载:
  2. 哲学家就餐是一个经典的Java多线程编程的实例,这是图形版。涉及到线程同步与互斥,临界区访问问题以及避免死锁的方法。 -Dining Philosophers is a classic example of Java multi-threaded programming, it is graphic version. Related to thread synchronization and mutual exclusion, critical access issues and ways to
  3. 所属分类:Java Develop

    • 发布日期:2017-04-02
    • 文件大小:107670
    • 提供者:204
  1. Producers

    0下载:
  2. (1)操作系统中允许同时有多个进程并发进行,进程对共享资源存在互斥或者协作关系。其中生产者进程产生信息资源,可以是计算进程。消费者进程使用信息,它可以是输出打印进程,对于缓冲区生产者与消费者进程互斥使用,其次,消费者进程依赖于生产者产生的资源,如果尚未得到满足,则必须等待生产者信号的唤醒; (2)本程序运行必须设置模拟系统缓冲区的个数以及系统进程的个数,对于每个程序,还必须设置其属性,即是生产者或者消费者,由简单的数字1和2表示。对于缓冲区的设置和进程个数及属性的设置可以根据需要模拟互斥和贡
  3. 所属分类:CSharp

    • 发布日期:2017-03-30
    • 文件大小:1970
    • 提供者:youyu
  1. semafor

    0下载:
  2. Synchronization process is mostly done by traffic lights. Other mechanisms (whose primary purpose is not synchronization, such as message lines, pipelines, etc.) are rarely used for the synchronization process. "Traffic lights" can also be used with
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-29
    • 文件大小:1105
    • 提供者:Vedran
  1. Process-Synchronization-and-Mutual-Exclusion

    0下载:
  2. Process Synchronization and Mutual Exclusion
  3. 所属分类:Other systems

    • 发布日期:2017-03-27
    • 文件大小:314830
    • 提供者:bobor
  1. sx2

    0下载:
  2. 操作系统课程设计,关于消费者与生产者的同步互斥问题的程序源代码。-Courses on operating system design, on consumers and producers mutual exclusion synchronization program source code.
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-08
    • 文件大小:1938172
    • 提供者:wyw
  1. sx4

    0下载:
  2. 操作系统课程设计,关于消费者与生产者的同步互斥问题的程序源代码。-Courses on operating system design, on consumers and producers mutual exclusion synchronization program source code.
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-31
    • 文件大小:13821698
    • 提供者:wyw
  1. sxword

    0下载:
  2. 操作系统课程设计,关于消费者与生产者的同步互斥问题的程序源代码及文档(转发)。-Courses on operating system design, consumers and producers on mutual exclusion synchronization program source code and documentation (Forward).
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:45233
    • 提供者:wyw
  1. Ring-mutual-algo-in-c

    0下载:
  2. Ring algorithm for mutual exclusion in c
  3. 所属分类:Linux Network

    • 发布日期:2017-04-29
    • 文件大小:19074
    • 提供者:sadaf
  1. V5-602_uCOS-emWin-Mutual-exclusion

    0下载:
  2. STemWin的CM3版本下,基于UCOS的互斥信号的程序-STemWinCM3 learn UCOS Mutual exclusion.
  3. 所属分类:uCOS

    • 发布日期:2017-05-31
    • 文件大小:13290439
    • 提供者: 吴旭光
« 12 3 4 5 6 7 8 9 10 »
搜珍网 www.dssz.com