资源列表
thread
- 运行程序,单击“启动线程”按钮,程序将启动一个线程,线程将进行数值计算,并将结果发送给主窗口;单击“挂起线程”按钮,线程将挂起;单击“恢复线程”按钮,线程将恢复。-Run the program, click" start the thread" button, the program will start a thread, the thread will make numerical computation, and sends the result to the main window
duohe
- 多线程的三种实现,包括 1)基于全局变量的多线程同步程序; 2)基于事件的多线程同步程序; 3) 基于临界区的多线程同步程序。 -多线程的三种实现,包括 1)基于全局变量的多线程同步程序; 2)基于事件的多线程同步程序; 3) 基于临界区的多线程同步程序。
ThreadCreat0
- 该程序通过创建两个线程分别实现连个小球(红色大球和蓝色小球)在固定区域里的运动。即单击启动按钮,开启两个线程,连个小球分别以不同的速度运动;单击停止按钮,蓝色小球线程被停止,红色小球继续运动。-The program achieved by creating two threads with a small ball (big red ball and blue ball) in a fixed area in the movement. That is, click the Start but
multithread
- 多线程 模拟 程序 程序开发 c++ .net 编程-Multi-threaded simulator program development c++. Net programming
AfxBeginThread1
- 架构工作线程,基于VC2005开发。供初学者使用-Architecture worker, based on VC development.
Producer-Consumer-Model
- 生产者消费者模型,多线程程序,主要涉及互斥、信号量等操作系统知识-Producer consumer model, multi-threaded programs, mainly related to mutual exclusion, semaphores and other operating system knowledge
Thread
- 这是一个多线程的实例 希望大家给予建议 我会虚心学习的-this is a multile thread
CHATROOM-sp5
- 采用多线程的套接字编程,实现多人对话聊天。-Multi-threaded socket programming, chat with more than dialogue.
bingxingsuanfa
- 对素数进行叠加 并行算法,若是输入的数值大于100则报错-The prime superimposed parallel algorithm, an error if the input values greater than 100
Pipe
- 孙鑫讲解的管道通信的源码 测试可用 大家在学习的时候可以下下来看看 最基本的进程之间管道通信-PIPE source code
StressMark
- StressMark测试软件是一个使用Visual C++编写的,开放源代码的测试工具,可以完成服务程序及重要算法的功能和性能测试,其最主要的功能是模拟多线程或多客户端的自动化压力测试。-The StressMark testing software is one uses Visual C++ the compilation, the open source code s testing tool, may complete the service routine and the import
MultiThread8
- 利用临界区实现线程间的同步.任一时刻只有一个线程可以拥有临界区对象,拥有临界区的线程 可以访问被保护起来的资源或代码段,其他希望进入临界区的线程 将被挂起等待,直到拥有临界区的线程放弃临界区时为止,这样 就保证了不会在同一时刻出现多个线程访问共享资源。-using critical section to realize the synchronization among threads.