搜索资源列表
net_oss
- 这是一个模拟电信计费的程序,非常详细,运用了线程池、消息队列和socket编程等技术。-This is a simulation of telecommunications billing procedures, very detailed, using the thread pool, Message Queue and socket programming technology.
guandaotongxin
- 1、 了解系统调用pipe()的功能和实际原理 2、 编写一段程序,使用管道实现父子进程之间的通信 a) 使用系统调用fork()创建一个子进程 b) 子进程调用函数write()向父进程发送自己的进程ID和字符串” s sending a message to parent.\\n”。 c) 父进程调用函数read()通过管道读出子进程发来的消息,将消息输出屏幕,然后终止 -1, the understanding of the system call pipe () fu
siproxd-0.5.13.tar
- Siproxd is a proxy/masquerading daemon for the SIP protocol. It handles registrations of SIP clients on a private IP network and performs rewriting of the SIP message bodies to make SIP connections work via an masquerading firewall (NAT). It
FlashingMessage
- a screen handling program to provide a flashing message. You will have to design a screen layout for where messages are placed on the screen. You will also have to consider when to delay the program in order to give the user time to read
OS2005
- 在linux平台上实现两个进程之间的交互。一客户进程向一远程进程提交一道作业;远程进程完成作业后向客户进程返回执行结果或者是结束的信息。-in achieving process between the two interactive. A process to a client process to submit a long-range operations; Remote operations after the completion of the process to the clien
msgq
- 这是一个关于用消息队列进行通信的小程序源码,makefile是在sco下的,如果在linux下可能要加socket的链接库-This is a message queue on the use of small communications procedures source, makefile in the sco, if under Linux may have to increase the socket libraries
accept-and-send-message.rar
- 这是一个基于linux的简单客户端和服务器端互相收发消息的源代码,很适合初学者,This is a simple linux-based client and server to send and receive messages with each other' s source code, it is suitable for beginners
MultiThread_PosixMsgQueue.rar
- POSIX消息队列实现可伸缩线程池通讯. 源码中分SRV和测试客户端.,POSIX message queues to achieve a scalable thread pool Newsletter
JinChengTongXun.zip
- 包含几个用不同方式(共享内存、socket、FIFO、消息队列等)实现进程通信的小程序,包含详细注释,足以解释各种方式进程通信的实现原理和编程方法,Contains a number of different ways (shared memory, socket, FIFO, message queue, etc.) to achieve the process of the small communications program, including detailed notes, are
message
- 这个程序是对linux 下的消息的运用的各种情况进行了演示,希望对大家有用-This procedure is a linux message under the circumstances the use of a demonstration, in the hope that useful to everybody
ipc
- 在linux下利用消息队列实现简单的聊天程序-In linux message queue implementation using a simple chat program
ipc
- Linux进程间通信小例子,包括管道,命名管道,信号,共享内存,消息队列等-Linux small example of the process of communication, including pipes, named pipes, signals, shared memory, message queues, etc.
message
- 该程序首先通过fork()函数分别创建Client进程和Server进程,然后通过msgget()函数创建消息队列,由Client使用msgsnd()函数向Server进程发送一个消息,Server进程通过msgrcv()函数从消息队列中接收到消息后,通过msgsnd()函数向Client进程发送回一个响应,之后,通过sleep()函数,等待Client进程从消息队列中读取了消息后,删除消息队列。-The program first by fork () function, create se
dbus-print-message
- Utility function to print out a message.
Message
- Represents a MIME message. The following code parses a stream into a Message object.
message
- A message loop allows PPAPI calls to be issued on a thread. You may not issue any API calls on a thread without creating a message loop. It also allows you to post work to the message loop for a thread. -A message loop allows PPAPI calls to be issu
message
- A message consists of both the data itself as well as a user gesture state.
message
- A message consists of both the data itself as well as a user gesture state.
message
- A message consists of both the data itself as well as a user gesture state Source Code for Embedded Linux.
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