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

搜索资源列表

  1. jinchengdiaodu

    0下载:
  2. 该系统包括有简单的进程控制、同步与通讯机构,其进程调度算法可任意选择。每个进程用一个PCB表示,其内容根据具体情况设置。各进程之间有一定的同步关系(可选)。系统在运行过程中应能显示或打印各进程的状态及有关参数的变化情况,以便观察诸进程的运行过程及系统的管理过程。-The system includes a simple process control, synchronization and communication agencies, the process scheduling algor
  3. 所属分类:File Operate

    • 发布日期:2017-04-01
    • 文件大小:2007
    • 提供者:xinyuan
  1. CMutexDemo02

    0下载:
  2. 线程间通讯,通过互斥锁同步技术实现,能够很好的解决线程调用的安全性问题-Inter-thread communication, synchronization by mutex implementation, the thread can call a good solution to security problems
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-03
    • 文件大小:27193
    • 提供者:peterlee
  1. CriticalSectionDemo05

    0下载:
  2. 适用临界区线程同步技术,对线程安全性问题作处理,也是最简单的一种同步技术-Critical section for thread synchronization, thread-safety issues of handling, is the simplest kind of synchronization
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-29
    • 文件大小:28884
    • 提供者:peterlee
  1. Barber

    0下载:
  2. Sleeping barbar Problem with synchronization.
  3. 所属分类:GUI Develop

    • 发布日期:2017-04-01
    • 文件大小:2442
    • 提供者:Nikhil Kumar
  1. edit

    0下载:
  2. 当时做毕设的程序,主要完成的是在VS2005下如何实现远程网路教学系统。利用directshow等技术,及硬件设备的SDK的函数以及OCX控件等来实现一个庞大的系统。此程序主要实现的是教学系统中的如何进行远程教学、播放、点播以及如何和PPT实现同步等功能,并且需要其他功能支持启动。-Complete set of procedures done at that time, mainly done in VS2005 How to remote online education system. U
  3. 所属分类:DirextX

    • 发布日期:2017-05-19
    • 文件大小:5453993
    • 提供者:王伟
  1. ThreadPoolProject

    1下载:
  2. 是我这几天写的一个C++线程池 注释很全 设计思路也写上去了 同步问题考虑的详细的不能在详细了-I write these days, a C++ thread pool comment is also written up the whole design concept of the synchronization problem can not be considered in more detail the
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-03
    • 文件大小:15260
    • 提供者:cacker
  1. Time

    0下载:
  2. 网络时间校验 同步电脑 采用国家数据库时间-Check the computer network time synchronization
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-25
    • 文件大小:17894
    • 提供者:郑学斌
  1. theard

    0下载:
  2. 线程的创建,管理,结束,多线程同步的处理机制。-Thread creation, management, end, multi-thread synchronization mechanism.
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-18
    • 文件大小:5008325
    • 提供者:
  1. c_CMutex

    0下载:
  2. 使用CMutex 类实现线程同步,将了解到声明线程函数,定义全局变量m_Sec,程序睡眠10秒,锁定临界区,对临界区进行解锁,输出变量等知识点。 -Use CMutex class implements thread synchronization, thread function declaration will learn to define global variables m_Sec, program sleep for 10 seconds, lock the critical a
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-03
    • 文件大小:5796
    • 提供者:祝伟
  1. The-only-operation

    0下载:
  2. 实现程序唯一运行,MFC对线程同步的控制。学习MFC线程同步比较有用-To achieve the only program running, MFC control of thread synchronization. More useful to learn MFC thread synchronization
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-28
    • 文件大小:136097
    • 提供者:王正凯
  1. jahedfilechayekhub

    0下载:
  2. Synchronization in Multithreaded Applications with MFC
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-03
    • 文件大小:283874
    • 提供者:mohammad
  1. MyBookMark

    0下载:
  2. 一个symbian中取得系统书签,并可以在LISTBOX中实现了增、删、改、查等功能,与系统的数据库同步。-Obtain a symbian system bookmarks, and can be implemented in the LISTBOX add, delete, change, search and other functions, the database synchronization with the system.
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-04-03
    • 文件大小:23581
    • 提供者:郭子杰
  1. The-problem-of-product-and-consume

    0下载:
  2. 生产者-消费者问题是一个经典的进程同步问题,该问题最早由Dijkstra提出,用以演示他提出的信号量机制。在同一个进程地址空间内执行的两个线程。生产者线程生产物品,然后将物品放置在一个空缓冲区中供消费者线程消费。消费者线程从缓冲区中获得物品,然后释放缓冲区。当生产者线程生产物品时,如果没有空缓冲区可用,那么生产者线程必须等待消费者线程释放出一个空缓冲区。当消费者线程消费物品时,如果没有满的缓冲区,那么消费者线程将被阻塞,直到新的物品被生产出来。-The producer- consumer qu
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-29
    • 文件大小:1050
    • 提供者:岳豪
  1. Chat

    0下载:
  2. vc++ 线程同步与异步套接字编程实例,Windows套接字在两种模式下执行I/O操作,阻塞和非阻塞-vc++ thread synchronization with asynchronous socket programming example, Windows Sockets implementation in two modes I/O operation, blocking and nonblocking
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-05
    • 文件大小:19598
    • 提供者:madud00048
  1. chat-room

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

    • 发布日期:2017-03-24
    • 文件大小:375858
    • 提供者:huaminggong
  1. VCprogress

    0下载:
  2. VC_6_0下利用互斥量同步线程来实现文件读取进度条-VC_6_0 under the use of mutex thread synchronization to achieve the file to read the progress bar
  3. 所属分类:GUI Develop

    • 发布日期:2017-05-17
    • 文件大小:4102849
    • 提供者:forgy
  1. ArcEnginePCSharp-e-tutorials

    0下载:
  2. ArcEngine+C#二次开发教程.有桌面GIS应用程序框架的建立,MapControl与PageLayoutControl同步等等。-ArcEngine+ C# secondary development tutorials. There the desktop GIS application framework for the establishment, MapControl and PageLayoutControl synchronization and so on.
  3. 所属分类:CSharp

    • 发布日期:2017-05-26
    • 文件大小:9482120
    • 提供者:曹姗
  1. CPP

    0下载:
  2. 编程实现生产者消费者或读写者的同步问题可视化显示模拟同步 -Or read-write programming producers and consumers of those visual display of simulated synchronization synchronization
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:938
    • 提供者:xieyy
  1. Managing_Windows_API.pdf

    1下载:
  2. 从Windows应用程序开发工具讲起,引导读者快速入门,详细讲解API和关键结构的使用方法,提供156个Windows API使用实例。   涵盖主题:   Windows应用程序开发入门,开发工具配置与使用,文件系统,内存管理,进程、线程和模块,线程同步,服务,图形用户界面,系统信息的管理,进程间通信,Windows SheLL程序设计,WindOWS GDL,网络通信与配置,设备驱动管理与内核通信,用户、认证和对象安全,Windows API的内部原理 -From Let' s
  3. 所属分类:Windows Develop

    • 发布日期:2017-11-12
    • 文件大小:48517748
    • 提供者:xj
  1. thread

    0下载:
  2. 实验总体要求,使用MFC相关的功能函数来模拟经典进程互斥和同步问题 生产者和消费者 读者和写者 哲学家就餐问题-The general requirements of experiments, the use of MFC function to simulate the functions related to the classical problem of mutual exclusion and synchronization producers and consumers,
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-29
    • 文件大小:1287
    • 提供者:m47
« 1 2 ... 21 22 23 24 25 2627 28 29 30 31 ... 50 »
搜珍网 www.dssz.com