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

搜索资源列表

  1. 多线程程序的编写聊天 程序

    0下载:
  2. 多线程程序的编写聊天程序多线程程序的编写,多线程应用中容易出现的问题。互斥对象的讲解,如何采用互斥对象来实现多线程的同步。如何利用命名互斥对象保证应用程序只有一个实例-multithreading procedures in the preparation chat program multithreaded program, multi-threaded applications easily occur. Mutex object explain how to use mutex objec
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:36360
    • 提供者:杨光源
  1. 进程与线程的同步、数据共享

    1下载:
  2. 进程与线程的同步、数据共享-process and thread synchronization, data sharing
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:33805
    • 提供者:宋敦江
  1. 它使用了同步对象保护线程请求的数据

    0下载:
  2. 由Visual C++ 4.1开发的一个ISAPI应用,它使用了同步对象(CCriticalSection)来保护线程请求的数据-by Visual C development of a 4.1 ISAPI application, it uses a synchronous Objects (CCriticalSection) to protect the data request threads
  3. 所属分类:Internet/网络编程

    • 发布日期:2008-10-13
    • 文件大小:22880
    • 提供者:万惠华
  1. vc++多线程

    0下载:
  2. 多线程编程   进程和线程都是操作系统的概念。进程是应用程序的执行实例,每个进程是由私有的虚拟地址空间、代码、数据和其它各种系统资源组成,进程在运行过程中创建的资源随着进程的终止而被销毁,所使用的系统资源在进程终止时被释放或关闭。   线程是进程内部的一个执行单元。系统创建好进程后,实际上就启动执行了该进程的主执行线程,主执行线程以函数地址形式,比如说main或WinMain函数,将程序的启动点提供给Windows系统。主执行线程终止了,进程也就随之终止。   每一个进程至少有一个主执行线
  3. 所属分类:Windows编程

    • 发布日期:2009-01-16
    • 文件大小:55560
    • 提供者:chenmh639
  1. 4ThreadDown

    0下载:
  2. 4线程合并同步下载程序,VB 源码
  3. 所属分类:网络编程

  1. Pthread-to-caculate-PI 多线程计算π

    1下载:
  2. 并行计算课程实验,多线程计算π,采用了加锁法以及数组暂存解决数据同步问题。-Experimental parallel computing course, multi-threaded computing π, using an array of temporary lock method and solve the data synchronization.
  3. 所属分类:并行运算

    • 发布日期:2016-06-14
    • 文件大小:2458
    • 提供者:YUANZX
  1. MyThreadPool.rar

    0下载:
  2. 使用 STL 做的windows 下的线程池,半同步/半异步模型,当线程没有使用时被suspend。,STL use under windows to do the thread pool, semi-synchronous/semi-asynchronous model, when the thread was not using suspend.
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-03
    • 文件大小:13902
    • 提供者:刘应
  1. MutexesDlg

    1下载:
  2. 编写多线程应用程序的最重要问题就是线程之间的资源同步访问。因为多个线程共享资源时如果发生访问冲突通常会产生不正确的结果。本程序主要实现线程间的同步技术-The preparation of multi-threaded applications the most important problem is the thread synchronization between the resources to visit. Because the shared resource when multi
  3. 所属分类:Process-Thread

    • 发布日期:2016-10-25
    • 文件大小:4026
    • 提供者:朱科
  1. MutexSynch

    0下载:
  2. 多线程编程-利用互斥量对象实现线程之间的同步。-Multi-threaded programming- the use of mutex objects to achieve the amount of synchronization between threads.
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-03
    • 文件大小:27642
    • 提供者:hmc
  1. netmsg

    0下载:
  2. 1.说明 类似于QQ的局域网聊天软件,包括服务器端和客户端程序,采用tcp/ip socket多线程编程,服务器端主要负责客户端用户的注册登陆,用户资料的获取.客户端负责与其他客户端进行信息控制与传递(包括聊天和传送文件). 2.特点 a.采用tcp非udp的socket编程,保证传输的稳定性和实时性. b.在同步操作时大多数采用了多线程和超时控制.例如:在传送文件的同时能继续聊天. c.服务器只负责用户登陆,查询,修改用户的基本信息和实时的在线用户列表.而不参与客户端之间
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-04-07
    • 文件大小:248698
    • 提供者:肖武华
  1. threadpool

    0下载:
  2. 线程池功能,控制线程的执行及同步,在同一时刻,线程池中只允许指定数量的线程执行.-Thread pool function, control the implementation of threads and synchronization, at the same time, the thread pool to allow only a specified number of threads implementation.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-28
    • 文件大小:24038
    • 提供者:流星
  1. MyThreadPool

    1下载:
  2. 用VC上自己写的一个线程池,实现了一个自定义的CriticalSection,一个安全且可自动解除的锁,一个自定义的线程类,它封装了一个线程核心对象,最后实现了线程池类,用来管理线程对象。 且利用事件核心对象,实现了线程核心对象对消息列表的同步访问。下载即可运行,是整个工程文件-a threadpool, implemented by define a self-defining CriticalSection, a safy lock class,and a thread class whic
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-16
    • 文件大小:20182
    • 提供者:Jack
  1. lesson

    1下载:
  2. VC的多线程编程,一共有8个实例,涉及多线程的所有方面,四种线程同步方式,分别有例子。-VC of the multi-threaded programming, a total of eight examples, involving all aspects of multi-threaded, four-thread synchronization mode, the respective examples.
  3. 所属分类:Windows Develop

    • 发布日期:2016-10-25
    • 文件大小:5966395
    • 提供者:付鋆
  1. multithread

    0下载:
  2. 多线程编程与线程同步实验包括实验心得,步骤内容要求-Multi-threaded programming and thread synchronization experience includes laboratory experiments, these content requirements
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-27
    • 文件大小:21024
    • 提供者:
  1. 123

    0下载:
  2. 这个是一个C#多线程同步的解说,给新手们看-This is a C# multi-threaded simultaneous explanation, look to the novice who
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-16
    • 文件大小:17927
    • 提供者:邵强
  1. vccom

    0下载:
  2. 用VC^++实现多线程方式下的串行通信 摘要:结合实际工程,在VC 环境下通过采用创建事件对象来保持线程同步、利用两个监听函 数提高数据接收效率和可靠性等措施实现了多线程串行通信,完成了工程前端数据采集器与后台 计算机之间的数据传输。 关键词:串行通信;多线程;VC 中图分类号:TN919.3 文献标识码:A-Serial communication realization by multiple threads in VC++ ZH AN G W ei—gang。cH
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:134137
    • 提供者:wLiao
  1. MoveDisk_0.4

    1下载:
  2. C# 写的一个文件同步小程序,使用到了异步委托调用程序,多线程编程,文件操作,比较适合参考。。有收藏价值-C# written in a file synchronization applet to use asynchronous delegate calls to the program, multi-threaded programming, file operations, more suitable for reference. . There is value to the coll
  3. 所属分类:CSharp

    • 发布日期:2017-03-29
    • 文件大小:460136
    • 提供者:yeabow
  1. threading

    0下载:
  2. 介绍c#线程.. 创建、启动和终止线程 使用线程池 线程同步和互交 -Introduction c# thread .. to create, start and terminate the thread using the thread pool thread synchronization and mutual cross-
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-01
    • 文件大小:16853
    • 提供者:btle
  1. ThreadPrint

    0下载:
  2. 本实验通过设计两个线程,一个是文章下载用C#实现的多线程同步打印文章(windows操作系统实验).线程和一个文章打印线程,用来实现模拟线程同步打印机,文章下载线程实现把文章下载到缓冲区,文章打印线程实现把文章打印出来。-Using C sharp to achieve multithread and synchronize.In the project,build up a Thread to download article,and build up the other Thread to
  3. 所属分类:CSharp

    • 发布日期:2017-03-29
    • 文件大小:14889
    • 提供者:
  1. 多线程编程

    0下载:
  2. 多线程编程,实现线程创建,线程同步操作。适合大家使用
  3. 所属分类:进程与线程

« 1 2 34 5 6 7 8 9 10 ... 44 »
搜珍网 www.dssz.com