搜索资源列表
LinuxIPC进程间的通信
- Linux 操作系统提供进程间通信(IPC)机制,用来保证正在执行的进程在内核的协调下能够 共享资源、同步以及交换数据等。Linux 支持大量进程间通信机制,包括信号、等待队列、管道 以及Unix 系统V 中提供的进程间通信机制,如消息队列、信号量和共享内存。-Linux operating system to provide inter-process communication (IPC) mechanism used to ensure that the process is being
进程控制实验
- 操作系统实验,进程控制实验,Process.exe为父进程执行程序ChildProcess.exe为子进程执行的程序 该程序实现了进程间的消息通信,共享储存区通信以及管道通信-experimental operating system, process control experiments, Process.exe designation process ChildProcess.exe procedures for the implementation of the process-th
管道通信类
- 一个很好的管道通信类,可以实现管道通信的各种机制。-a good communication channel category, can achieve a channel communication mechanisms.
PipeSourceCode
- 此程序为WINDOWS下用VC实现的利用命名管道通信的程序-procedure for Windows using the VC using named pipe communication procedures
NamePipe
- 自己封装的管道通信类,可简单修改后用于需要管道技术的程序中,并附带测试程序。-own package Pipeline Communications, simple modifications necessary for the pipeline technical procedures, test procedures and fringe.
name_Pipe
- 命名管道.pdf 介绍命名管道的原理和应用实现。对于进程间通信是个很好的东西。-Named Pipes. Pdf named pipe to introduce the principles and applications. For inter-process communication is a good thing.
process4
- 操作系统实验,线程和管道通信实验,由此处可以进行函数值的运算-Experimental operating system, thread and pipe communication experiment, from where the computing function values can be
ipc
- 管道创建和关闭,管道通信主要用于不同进程之间的通信!-Pipeline creation and closure of the main communication channels for communication between different processes!
LinuxShare
- 进程管道通信-The process of pipeline communications
jc
- 进程的管道通信,可用来加强对进程通信的理解.-The process of communication channels that can be used to enhance the understanding of the process of communication.
unix
- linux下的进程间通信,里面有无名管道通信的代码和结果。-linux pipe
MingMingGuanDao
- 命名管道可在同一台计算机的不同进程之间,或在跨越一个网络的不同计算机的不同进程之间,支持可靠的、单向或双向的数据通信。不需要事先深入掌握基层网络传送协议(如 T C P / I P或I P X)的知识。这 是由于命名管道利用了微软网络提供者(M S N P)重定向器,通过一个网络,在各进程间建立 通信。-Named Pipes can be on the same computer between different processes, or across a network of d
pipe
- 一个简单的linux管道通信例子,方便初学linux的朋友-A simple example of linux channels of communication to facilitate learning linux friends
PIPE
- Windows 操作系统中 进行 管道 通信-Windows operating system to pipe communication
1
- 主题:进程的管道通信 内容:这是一个设计型实验,要求自行编制程序。 使用系统调用pipe()建立一条管道,两个子进程分别向管道写一句话: Child process1 is sending a message! Child process2 is sending a message! 父进程从管道读出来自两个子进程的信息,显示在屏幕上。 要求: 1) 父进程先接收子进程1发来的消息,然后再接收子进程2发来的消息。 2) 实现管道的互斥使用,当一个子进程正在对
BatCmdRun
- 实现windows下的管道通信,可以通过管道实现cmd的命令交互,比如应用程序中需要通过ADB命令和设备通信,可以通过参考代码实现(Pipeline communication under windows can be achieved through the pipe CMD command interaction, such as applications need to communicate through the ADB command and equipment, you can a
进程间通信
- 可应用于同一台机器上两个或多个进程之间的相互通信(Mutual communication between two or more processes that can be applied to the same machine)
OS课程设计
- 本科操作系统课程设计实现管道通信 通过在两个进程间创建通道,一个写信息通过通道传送给另一个进程并且读出来(pipeline communication)
nodejs父子进程的stream方式通信
- 父子进程使用管道通信,对于spawn方式创建的子进程,没有默认管道,所以需要使用此中方式,另外,通过nodejs创建出来的其他进程,比如java,c,都可以使用输入输出流来实现更复杂更安全的通信(The father child process uses pipeline communication, and there is no default pipe for the subprocesses created by the spawn mode, so we need to use thi
进程的创建和管道通信
- 进程的创建和管道通信使用系统调用pipe ( )建立一条管道 创建2个子进程,两个子进程P1和P2分别向管道各写一句话: Child 1 is sending a message! Child 2 is sending a message! 父进程从管道中读出来自于两个子进程的信息,并显示在屏幕上(Process creation and pipeline communication)