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

搜索资源列表

  1. sy4

    1下载:
  2. 线程的创建和同步控制 在windows2000的环境下,创建一个控制台进程,此进程创建两个并发线程,一个是读线程,另一个是写线程。这两个线程共享一个数组A,写线程对数组分别进行10次写操作,每次写操作对A的每个元素赋一个相同的值;读线程对数组分别进行10次读操作,每次读操作输出A中所有元素的值。写出相应代码,并分析运行结果。修改代码,使每次读写互斥,即每次对数组的写操作结束后才能进行写操作,反之亦然。-Thread creation and synchronization control i
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-30
    • 文件大小:714707
    • 提供者:陈婷婷
  1. process

    0下载:
  2. 进程完整的程序,包括进程的互斥,同步,死锁,共享等-process
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-14
    • 文件大小:4204
    • 提供者:Allen
  1. thread

    0下载:
  2. 多线程聊天程序,多线程应用中容易出现的问题。互斥对象的讲解,如何采用互斥对象来实现多线程的同步。如何利用命名互斥对象保证应用程序只有一个实例运行。应用多线程编写网络聊天室程序。-Write multi-threaded programs, multi-threaded applications prone to problems. Mutex object' s explain how to use multi-threaded mutex object to achieve synchr
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-20
    • 文件大小:5727854
    • 提供者:宋晓波
  1. MultiThread

    0下载:
  2. 多线程编程,包括互斥对象和事件对象的实现。-MultiThread
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-11
    • 文件大小:2259227
    • 提供者:laizhisheng
  1. Test_Mutex

    0下载:
  2. 这是一个演示windows编程中互斥量用法的程序,非常适合windows编程的初学者-This is a Produre for Mutex !
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:166068
    • 提供者:chengbing
  1. sx1

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

    • 发布日期:2017-05-15
    • 文件大小:3613359
    • 提供者:wyw
  1. sx3

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

    • 发布日期:2017-05-19
    • 文件大小:5342910
    • 提供者: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. VC_programming_code_examples_of_how_use_exclusive_

    0下载:
  2. VC编程实现如何使用互斥量实例代码VC programming code examples of how to use the exclusive content-VC programming code examples of how to use the exclusive content
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-09
    • 文件大小:12866
    • 提供者:im
  1. C_multi_threaded_mutex

    0下载:
  2. C#多线程互斥,两个线程交替工作C # multi-threaded mutex, two threads alternate work-C# multi-threaded mutex, two threads alternate work
  3. 所属分类:CSharp

    • 发布日期:2017-04-17
    • 文件大小:9271
    • 提供者:elai
  1. MutexTest

    0下载:
  2. 互斥体使用的一个样例,主要为多线程控制使用-Mutex using a sample, the main use for the multi-threaded control
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-06
    • 文件大小:4687
    • 提供者:xjc
  1. MutexThreadSyn

    0下载:
  2. 使用互斥对象(Mutex)实现线程同步,vc-Use the mutex object (Mutex) to achieve thread synchronization, vc++
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-03
    • 文件大小:34082
    • 提供者:何建亮
  1. Mutex_Critical

    1下载:
  2. 这个例子利用多线程使用不同的排序算法对数据进行排序,每一个线程使用不同的算法。主线程里使用快速排序QuickSort,其他四个算法分别建立四个子线程,在子线程中进行排序。因为每一个线程都要调用函数PrintResult把结果输出到显示器上,所以不同的线程就会争夺着向显示器输出,这样,不同线程的输出就会混合在一起,所以呢必须让线程一个接着一个输出。也就是必须对PrintResult进行互斥控 制。要进行互斥控制,则必须用到Event、Mutex、CrititicalSection、Semaph
  3. 所属分类:Process-Thread

    • 发布日期:2016-04-05
    • 文件大小:856064
    • 提供者:chenzifeng
  1. Thread_Synchronization

    0下载:
  2. ├─SuspendThread_ResumeThread ├─所有教程_files ├─线程同步 - 关键代码段 ├─线程同步 - 条件变量 ├─线程同步 - 等待函数 ├─线程同步 - 等待定时器 ├─线程同步-互斥 ├─线程同步-互锁函数族 └─线程同步-信号量 学习资料-├ ─ SuspendThread_ResumeThread ├ ─ all the tutorials _files ├ ─ thread synchronization- t
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-06
    • 文件大小:1246464
    • 提供者:chenzifeng
  1. CThreadEx

    0下载:
  2. 实现 多线程间的对全局变量的互斥访问 达到线程间进行通信的目的-To achieve mutually exclusive access among multiple threads
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-15
    • 文件大小:3735085
    • 提供者:赵万青
  1. jinchengguanli

    0下载:
  2. 1.掌握进程的概念,明确进程的含义 2.认识并了解并发执行的实质 3.掌握进程另外的创建方法 4.熟悉进程的睡眠、同步、撤消等进程控制方法 5.进一步认识并发执行的实质 6.分析进程竞争资源的现象,学习解决进程互斥的方法 -1. To grasp the concept of the process, clearly the meaning of the process 2. Know and understand the essence of concurrent e
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-04
    • 文件大小:50447
    • 提供者:dc
  1. jingcheng

    0下载:
  2. WindowXp 线程同步 1.创建和打开事件对象在进程间传送信号 2.利用互斥体保护共享资源-WindowXp thread synchronization 1. To create and open the event object to send signals between processes 2. Protection of shared resources using mutex
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-24
    • 文件大小:1535
    • 提供者:陈涛
  1. ss

    0下载:
  2. 模拟进程的创建与撤销,生产者和消费者进程互斥-Creation and revocation of the modeling process, the process of mutually exclusive producers and consumers
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-10
    • 文件大小:1357
    • 提供者:剑客
  1. os

    0下载:
  2. 分析进程的同步与互斥现象生产者与消费者问题,以及调度算法,编程实现经典的进程同步问题-It is about producer and comsumer problem,as well as math
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:139338
    • 提供者:李燕翔
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 21 »
搜珍网 www.dssz.com