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

搜索资源列表

  1. 生产者消费者程序

    0下载:
  2. 有关操作系统中著明的生产者消费者程序,实现进程间的同步与互斥-the operating system with the prescribed procedures for producers and consumers, the process to achieve synchronization and mutual exclusion
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:51103
    • 提供者:gaoyan
  1. lock_mutex

    0下载:
  2. 演示了linux中的互斥锁机制,用gcc编译后运行-Demonstrates the mutual exclusion lock mechanism linux, compiled and run using gcc
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-30
    • 文件大小:753
    • 提供者:your name
  1. sharedmemry

    0下载:
  2. linux 多线程编程, 共享内存传递数据,为了实习多个线程同时访问数据,需要互斥,保证数据同步等-linux multithreaded programming, shared memory to transfer data, in order to practice multiple threads simultaneously access the data, need mutual exclusion, to ensure data synchronization
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-29
    • 文件大小:16072
    • 提供者:郭东东
  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. wu

    0下载:
  2. 实现操作系统课程的pv操作,在unix下的多进程之间的同步与互斥-The realization of operating systems courses pv operation, in unix multi-process synchronization and mutual exclusion between
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-14
    • 文件大小:3697
    • 提供者:火也
  1. jincheng

    0下载:
  2. 进程的同步与互斥,在Unix环境下运行,个人写的,希望高手指点-Process synchronization and mutual exclusion, in the Unix environment to run, personal writing, I hope you instruct
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-12
    • 文件大小:1379
    • 提供者:贵树生
  1. consumer_producer

    0下载:
  2. 用信号量机制实现多个生产者—消费者问题,实现线程间的同步与互斥-Semaphore implementation mechanism with a number of producers- the consumer problem, achieve inter-thread synchronization and mutual exclusion
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-14
    • 文件大小:4168
    • 提供者:qingangjun
  1. philosopher

    0下载:
  2. 模拟“五个哲学家”问题该实验的要点是,解决并发环境下,多进程之间的同步与互斥问题。进程间的同步互斥必然涉及进程间的通信(信息交换)。-Simulation of the " five philosophers" problem of the main points of the experiment, the solution to complicated circumstances, between the multi-process synchronization and
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-12
    • 文件大小:752
    • 提供者:chenlisten
  1. os

    0下载:
  2. 分别利用UNIX的消息通信机制、共享内存机制(用信号灯实施进程间的同步和互斥)实现两个进程间的数据通信。具体的通信数据可从一个文件读出,接收方进程可将收到的数据写入一个新文件,以便能判断数据传送的正确性(对文件操不熟悉的同学可不必通过读写文件,只要键盘输入和输出至屏幕进行比较即可)。 -, Respectively, using the information communication mechanism UNIX, shared memory mechanism (with tr
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-28
    • 文件大小:3137
    • 提供者:一零
  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 solution to mutual exclusion mutex pr
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-02
    • 文件大小:874
    • 提供者:孙雪春
  1. 1

    0下载:
  2. 操作系统 生产者与消费者问题 掌握进程(线程)的同步与互斥。 掌握生产者消费者问题的实现方法-The operating system to master the process of issue of producers and consumers (thread) synchronization and mutual exclusion. Grasp the realization method of the producer consumer problem
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-05
    • 文件大小:1604
    • 提供者:超越
  1. liao

    0下载:
  2. 进程同步与互斥 该代码非常完善的展现的经典进程同步与互斥问题——生产者和消费者问题的同步与互斥过程!-Process synchronization and mutual exclusion of the code is very well exhibited the classic process of synchronization and mutual exclusion problem- the problem of producers and consumers the proce
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-09
    • 文件大小:1998426
    • 提供者:liaoyalan
  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. caozuoxitong2

    0下载:
  2. 创建无名管道,实现基于管道的进程间数据通信,掌握管道通信的方法及特征;并进一步理解互斥与同步的含义。-Create anonymous pipe, pipe-based inter-process data communication, control methods and characteristics of communication channels and further understanding of the meaning of mutual exclusion and syn
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-04
    • 文件大小:5269
    • 提供者:万静媛
  1. five

    0下载:
  2. 对于非对称性互斥问题有关概念的理解。观察和体验非对称性互斥问题的并发控制方法。了解Linux系统中IPC进程同步工具的用法,训练解决对该类问题的实际编程、调试和分析问题的能力。-For non-symmetric mutual exclusion problems understanding the concept. Observe and experience the non-symmetry of the problem of concurrency control methods are
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-03
    • 文件大小:3499
    • 提供者:于海
  1. four

    0下载:
  2. 并发协作进程同步与互斥概念的理解,观察和体验并发进程同步与互斥操作的效果。-Concurrent collaborative process to understand the concept of synchronization and mutual exclusion, concurrent processes to observe and experience the effects of synchronization and mutual exclusion operations.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-30
    • 文件大小:5332
    • 提供者:于海
  1. dx

    0下载:
  2. 利用Windows提供的MFC类编程实现读者/写者的同步互斥问题,保证:1)一个人在写时,其他人不允许写;2)一个人在写时,其他人不允许读;3)一个人在读时,其他人不允许写;4)一个人在读时,其他人允许读。-MFC classes provided by Windows programming reader/writer mutual exclusion synchronization to ensure that: 1) When a person writes, others are not
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-04
    • 文件大小:1291
    • 提供者:eleven
  1. heshangtiaoshui

    0下载:
  2. 这是一个模拟小和尚挑水老和尚喝水的解决互斥与同步的问题-This is a simulation of the old monk monk carries water to solve water problem of mutual exclusion and synchronization
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-03
    • 文件大小:8752
    • 提供者:彭杰
  1. caozuoxitong

    0下载:
  2. 1.预备内容:阅读操作系统的进程管理章节内容,对进程的同步和互斥,以及信号量机制度有深入的理解。 2.实践准备:掌握一种计算机高级语言的使用-1. Preparation: Read the operating system process management chapters, the process of synchronization and mutual exclusion, semaphores, and a deep understanding of local system
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-02
    • 文件大小:84597
    • 提供者:carponlee
  1. pthread_sync_and_mutual

    0下载:
  2. linux多线程极大方便了程序编写,但同时必须考虑线程同步、互斥问题。 示例代码给出了利用信号量实现P、V操作,从而保证多线程同步、互斥。-linux multithread programming is very convenient, but we must pay attention to synchronization and mutual exclusion. The sample code shows us how to ensure multi-thread synch
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-04
    • 文件大小:5682
    • 提供者:y
« 12 3 4 »
搜珍网 www.dssz.com