搜索资源列表
UNIX_MSG_COMMUNICATION
- UNIX环境下如何应用消息队列实现进程间通讯,值得一看的好-UNIX environment on the use of Message Queue to achieve inter-process communication, enjoying their good Dongdong
unixtonxunchengxu
- 这是个通讯程序,通过socket,把接收的消息放入消息对列,同时把队列中的消息通过socket发出去。 -This is the communication process, socket, receiving the news Add to the list news, while the news cohort through socket issued to.
MultiThread_PosixMsgQueue.rar
- POSIX消息队列实现可伸缩线程池通讯. 源码中分SRV和测试客户端.,POSIX message queues to achieve a scalable thread pool Newsletter
dcmsniffer
- 一个dicom通讯开发的监听分析程序,支持dicom协议,可以获得dicom通讯消息-A dicom communications analysis program developed by listening and support dicom protocol, access to dicom communication messages
msg_client
- 这是一个linux下的编程,是一个linux下的ipc通讯中的消息队列的客服端-err
msg_server
- 这是一个linux下ipc通讯的服务端。主要体现linux下的消息队列。-This is a linux communications services under the ipc client. Mainly reflected under linux message queue.
linux
- linux下的进程通讯机制的代码例子。消息队列以及共享内存。-linux process communication mechanism under the code examples. Message queue and shared memory.
ipc
- linux下进程间通讯列子,包括消息队列,共享内存等-linux Liezi under the process of communication, including message queues, shared memory, etc.
ipc
- linux进程间通讯,包括管道、消息队列、信号量通讯。-linux inter-process communication, including pipes, message queues, semaphores communications.
ipc
- 消息队列简单模型,实现两个进程,一个是客户端 一个是服务器 运用System V消息队列通讯-Message queue simple model, to achieve the two processes, one is one client server communication using System V message queues
juzhensyanbfa
- 给出了微机网络并行计算环境和拥有共享内存的并行计算环境下大规模矩阵相乘的几种 并行算法,分析了这些算法的计算和通讯时间复杂性,在多台微机上安装并行消息传递机制MPI (message passing interface) ,构成微机网络并行计算环境,在该环境下对所给算法作了数值试验, 结果表明所给出的算法非常有效,同时在程序没有改动的条件下,将微机网络并行环境下的程序移 植到具有共享内存的并行计算机IBMP650 上,结果表明,所给算法具有更高的加速比和并行效率。-Gives t
message
- 消息队列 ,linux通讯方式之一消息队列的简单测试程序,经测,好用。-Message queue, linux means of communication, one message queue simple test program, measuring, easy to use.
stzroatan
- 用UDP协议实现消息通讯有一个自己的类,不错源码-Using UDP protocol implementation news communication has its own class, a good source
ipcMsg
- 非常好用的消息队列使用案例,使用与linux多进程通讯(message queue usage case)
linux进程之间的通讯综合实例
- A<========>B<=========>C<=====>D<======>E A与B进程之间通过TCP的socket传递 主要掌握socket的流程: A服务器端: socket -->bind---->listen---->accept send read B客户端: socket-->connect->read send 不懂的可以man一下 man socket B与C