搜索资源列表
学习多线程之一:线程通信--利用事件对象
- 多线程编程系列。使用事件进行线程间的通讯。一个不错的实例代码。-series of multi-threaded programming. The use of the incident to communications between the threads. A good example code.
page56
- 刊登在2005年第2期的代码,代码演示了在Visual C++中利用自定义消息实现线程间通讯。-published in 2005, two of code, code demonstrating the use of Visual C since the definition of news to achieve communication between threads.
会话程序
- 线程的概念、属性;线性创建的2种方式及其联系、区别和使用场合;线程的生命周期和5种状态;线程状态控制的一般方法;线程同步的概念、原理;线程同步的场合、线程同步的条件、同步对象的选取;线程间通讯的概念,与线程同步的区别;notify和wait的使用方法。两类socket通信的概念、特点、应用场合;两类socket通信的客户和服务端的基本步骤;组播通信的概念、组播客户端服务端的基本结构。-threads concept attribute;
vc++多线程
多线程编程
进程和线程都是操作系统的概念。进程是应用程序的执行实例,每个进程是由私有的虚拟地址空间、代码、数据和其它各种系统资源组成,进程在运行过程中创建的资源随着进程的终止而被销毁,所使用的系统资源在进程终止时被释放或关闭。
线程是进程内部的一个执行单元。系统创建好进程后,实际上就启动执行了该进程的主执行线程,主执行线程以函数地址形式,比如说main或Win
会话程序
- 线程的概念、属性;线性创建的2种方式及其联系、区别和使用场合;线程的生命周期和5种状态;线程状态控制的一般方法;线程同步的概念、原理;线程同步的场合、线程同步的条件、同步对象的选取;线程间通讯的概念,与线程同步的区别;notify和wait的使用方法。两类socket通信的概念、特点、应用场合;两类socket通信的客户和服务端的基本步骤;组播通信的概念、组播客户端服务端的基本结构。-threads concept attribute;
学习多线程之一:线程通信--利用事件对象
- 多线程编程系列。使用事件进行线程间的通讯。一个不错的实例代码。-series of multi-threaded programming. The use of the incident to communications between the threads. A good example code.
InjectDLL
- 讲述向其它进程注入线程的方法,windows高级编程上提到过。windows进程间通讯的一种方法,值得一看-on to other threads into the process, senior programming windows mentioned. Windows inter-process communication method, an eye-catcher
PLC_Control
- 欧姆龙最新PLC CPH1系列hostlink应用例子,用于编写上位机控制软件,通过串口直接控制PLC。用vc编写,方便转化为其他语言。 包括内容: 1:自封装串口类(来源于网络,做了适当修改) 2:多线程,线程间同步,通讯等。 3:生产者消费者模型应用,环形缓冲队列应用 4:欧姆龙hostlink通讯通讯同步处理,FCS校验值计算,各种hostlink指令使用示例。 5:线程消息处理类封装。 6:windo
YCode
- 做了很多通讯服务器软件,先公布最基础的线程类源码,以后再公布“异步”TCP/IP通讯线程类源码。 本线程类,主要为了解决线程间同步互斥的问题,以及解决和主窗体数据交流同步的问题。已经很稳定长时间的运行于本人开发的服务器程序上。
linux_useAPI_and_other
- linux 应用程序API_进程 进程和信号编程 管道/io ,进程间通讯,网络编程, 线程机制 -linux application process and signal process API_ programming pipeline/io, inter-process communication, network programming, threading mechanism
multhread
- 多线程编程:Win32 API多线程编程例程、MFC中的多线程开发、线程间通讯、线程的同步。-Multi-threaded programming: Win32 API routine multi-threaded programming, MFC in the multi-threaded development, inter-thread communication, thread synchronization.
socket
- 实现多线程间的异步通讯,主要应用委托的天生异步性-Between multi-threaded implementation of asynchronous communications, commissioned a major application of natural induction
LinuxQueue
- linux 线程间通讯的队列例程,本人修改使用,请多多支持。-linux queue
ThreadComt
- 自定义消息实现线程间通讯,对于线程开发很有借鉴意义。-To achieve a custom message thread communication, thread for the development of referential significance.
TestHandler
- Handler应用方面的具体介绍 适合入门者以及高级研发人员深入学习,进一步掌握android线程间通讯的简单例子-a sample for android handler
EventObject_Manage
- 一个windows多线程实例,如果想写一个多线程程序又苦于不知道怎样做线程间通讯的朋友可以参考一下-Example of a multi-threaded windows, if they want to write a multithreaded program does not know what to do suffer from communication between threads can refer to a frien
ThreadTest
- 线程实例,线程间通讯控制,辅助线程调用主线程控件-Thread instance, controls communication between threads, worker threads call the main thread controls
111
- 线程通讯实例,实现线程间通讯,传递信息12345-Thread communication instance, to achieve inter-thread communication, transmission of information
xiancheng
- 通过代码实现线程间通讯,实现等待、唤醒等机制。(Thread communication is realized through code.)
WinSock2
- 一直很烦恼delphi附带的socket控件都不能满足我的设计逻辑需要,无奈只好自己动手封装了API,并且得到实践的证明(至少有两个服务器能稳定运行至今),本socket组件的多线程机制是安全的稳定的。 在服务器端,创建线程池,对于每个客户连接对应一个独立的线程类,可以在线程内处理客户数据,并可以线程间采用同步机制交换数据,为通讯服务器的建立提供了技术实现的基础。 U版本的经过了缺陷优化,虽然仅是经过了测