CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 进程的管道通信

搜索资源列表

  1. 进程控制实验

    0下载:
  2. 操作系统实验,进程控制实验,Process.exe为父进程执行程序ChildProcess.exe为子进程执行的程序 该程序实现了进程间的消息通信,共享储存区通信以及管道通信-experimental operating system, process control experiments, Process.exe designation process ChildProcess.exe procedures for the implementation of the process-th
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:1.86mb
    • 提供者:俞鹏
  1. popeconnect

    0下载:
  2. 实现进程的管道通信。用系统调用pipe( )建立一管道,二个子进程P1和P2分别向管道各写一句话: Child 1 is sending a message! Child 2 is sending a message! 父进程从管道中读出二个来自子进程的信息并显示(要求先接收P1,后P2)。 -process of the realization of the communication channel. With system call pipe () to establi
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2.06kb
    • 提供者:钟洁
  1. name_Pipe

    0下载:
  2. 命名管道.pdf 介绍命名管道的原理和应用实现。对于进程间通信是个很好的东西。-Named Pipes. Pdf named pipe to introduce the principles and applications. For inter-process communication is a good thing.
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-26
    • 文件大小:915.58kb
    • 提供者:danny
  1. bb

    0下载:
  2. 建立一个父子进程通信管道 进行通信和 程序; 用共享存储区 方式实现多个进程的通信 。 -jinchengjiandetongxin
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-29
    • 文件大小:1.16kb
    • 提供者:huang
  1. ipc

    0下载:
  2. 管道创建和关闭,管道通信主要用于不同进程之间的通信!-Pipeline creation and closure of the main communication channels for communication between different processes!
  3. 所属分类:Linux Network

    • 发布日期:2017-03-30
    • 文件大小:709byte
    • 提供者:崔强
  1. ProcessCommunication

    0下载:
  2. Windows 的IPC(进程间通信)机制主要是异步管道和命名管道。(至于其他的IPC方式,例如内存映射、邮槽等这里就不介绍了) 管道(pipe)是用于进程间通信的共享内存区域。创建管道的进程称为管道服务器,而连接到这个管道的进程称为管道客户端。一个进程向管道写入信息,而另外一个进程从管道读取信息。 -Windows of the IPC (interprocess communication) mechanism is asynchronous pipelines and named
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-26
    • 文件大小:150kb
    • 提供者:周晓宇
  1. CMMI

    0下载:
  2. CMMI 利用命名管道技术,在进程间进行通信的例程。希望和大家交流-CMMI using named pipe technology, in the process of communication between the routines. Would like to exchange
  3. 所属分类:software engineering

    • 发布日期:2017-03-29
    • 文件大小:92.36kb
    • 提供者:tjh
  1. jc

    0下载:
  2. 进程的管道通信,可用来加强对进程通信的理解.-The process of communication channels that can be used to enhance the understanding of the process of communication.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-04
    • 文件大小:836byte
    • 提供者:li
  1. Linux_envirnment_communication

    0下载:
  2. 该函数创建的管道的两端处于一个进程中间,在实际应 用中没有太大意义,因此,一个进程在由pipe()创建管道后,一般再fork一个子进程,然后通过管道实现父子进程间的通信-The function at the two ends of the pipeline to create a process in the middle, in practical applications is not much significance, therefore, a process by the pipe
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-26
    • 文件大小:11.69kb
    • 提供者:zhangkun
  1. MingMingGuanDao

    0下载:
  2. 命名管道可在同一台计算机的不同进程之间,或在跨越一个网络的不同计算机的不同进程之间,支持可靠的、单向或双向的数据通信。不需要事先深入掌握基层网络传送协议(如 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
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-02
    • 文件大小:743.85kb
    • 提供者:kunlunshanjiao
  1. 01

    0下载:
  2. 编写程序实现进程的管道通信。用系统调用pipe( )建立一管道,二个子进程P1和P2分别向管道各写一句话:-Write a program to achieve the process of communication channels. With the system call pipe () to build a pipeline, two sub-processes P1 and P2 respectively, each pipeline write one sentence:
  3. 所属分类:software engineering

    • 发布日期:2017-04-10
    • 文件大小:611byte
    • 提供者:luyifeng
  1. 1

    0下载:
  2. 主题:进程的管道通信 内容:这是一个设计型实验,要求自行编制程序。 使用系统调用pipe()建立一条管道,两个子进程分别向管道写一句话: Child process1 is sending a message! Child process2 is sending a message! 父进程从管道读出来自两个子进程的信息,显示在屏幕上。 要求: 1) 父进程先接收子进程1发来的消息,然后再接收子进程2发来的消息。 2) 实现管道的互斥使用,当一个子进程正在对
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-04-05
    • 文件大小:7.53kb
    • 提供者:小斧子
  1. the-ticket-selling-of-train-station

    0下载:
  2. 模拟火车站售票系统和实现进程的管道通信源代码-Simulated train station ticket system and communication channels to achieve the process of source code
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-26
    • 文件大小:732byte
    • 提供者:李军
  1. communication

    0下载:
  2. 进程的管道通信,父进程调用fork()生成两个子进程,完成父子进程之间的通信。-Process pipeline communication, the parent process calls fork () to generate two sub-processes, to complete the communication between the parent and child processes.
  3. 所属分类:Linux Network

    • 发布日期:2017-04-10
    • 文件大小:640byte
    • 提供者:kk
  1. fork()

    0下载:
  2. 进程的管道通信编制一段程序,实现进程的管道通信,使用系统调用pipe()建立一个管道文件;两个子进程P1和P2-The the process pipe communication the preparation of a program, achieve process pipeline communication, using the system call pipe () to build a pipeline processes P1 and P2 of the two sub-
  3. 所属分类:OS Develop

    • 发布日期:2017-11-07
    • 文件大小:1.16kb
    • 提供者:沈伯伟
  1. procedures

    0下载:
  2. 进程的管道通信 编制一段程序,实现进程管道通信。使用系统调用pipe()建立一条管道。两个子进程P1和P2分别向管道各写一句话。再观察程序的执行时屏幕上出现的现象,并分析原因 -The process of preparing a pipe communication procedures, process pipe communication. Use of system calls pipe () to establish a pipeline. Two sub-processes
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-14
    • 文件大小:4.28kb
    • 提供者:李亮
  1. jinchegndeguandaotongxin

    0下载:
  2. 编写程序实现进程的管道通信。具体要求:首先使用系统调用pipe( )建立一个管道;然后分别创建2个子进程,要求2个子进程分别向管道各写一句话:“Child 1 is sending a message!” 和 “Child 2 is sending a message!” 最后,父进程从管道中读出二个来自子进程的信息并显示。-编写程序实现进程的管道通信。具体要求:首先使用系统调用pipe( )建立一个管道;然后分别创建2个子进程,要求2个子进程分别向管道各写一句话:“Child 1 is sen
  3. 所属分类:Driver develop

    • 发布日期:2017-04-14
    • 文件大小:3.19kb
    • 提供者:付小杰
  1. 进程间通信

    0下载:
  2. 可应用于同一台机器上两个或多个进程之间的相互通信(Mutual communication between two or more processes that can be applied to the same machine)
  3. 所属分类:C#编程

    • 发布日期:2017-12-26
    • 文件大小:488kb
    • 提供者:wang3397
  1. nodejs父子进程的stream方式通信

    0下载:
  2. 父子进程使用管道通信,对于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
  3. 所属分类:网络编程

    • 发布日期:2018-05-01
    • 文件大小:1kb
    • 提供者:GladiatorNick
  1. 进程的创建和管道通信

    0下载:
  2. 进程的创建和管道通信使用系统调用pipe ( )建立一条管道 创建2个子进程,两个子进程P1和P2分别向管道各写一句话: Child 1 is sending a message! Child 2 is sending a message! 父进程从管道中读出来自于两个子进程的信息,并显示在屏幕上(Process creation and pipeline communication)
  3. 所属分类:Linux/Unix编程

    • 发布日期:2018-05-02
    • 文件大小:695kb
    • 提供者:仓鼠123
« 12 3 4 5 6 7 8 9 10 »
搜珍网 www.dssz.com