搜索资源列表

  1. 进程控制实验

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

    • 发布日期:2008-10-13
    • 文件大小:1949438
    • 提供者:俞鹏
  1. (进程通信)

    0下载:
  2. 进程管理中的进程通信 父进程和子进程间的通信 以及五种通信方式-process management of the process of communication process and the father of the child process and the communication between the five means of communication
  3. 所属分类:界面编程

    • 发布日期:2008-10-13
    • 文件大小:649801
    • 提供者:王成
  1. 父进程与子进程

    0下载:
  2. 父进程建立两个子进程,再分别*
  3. 所属分类:Linux/Unix编程

    • 发布日期:2010-10-22
    • 文件大小:1229
    • 提供者:jalion@yeah.net
  1. 哲学家进餐问题

    0下载:
  2. linux进程间通信,父进程,子进程的创建-inter-process communication, parent process, the process of creating son
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-08
    • 文件大小:12288
    • 提供者:方芳
  1. 实验二302_22

    0下载:
  2. 使用系统调用fork()创建两个子进程。当此程序运行时,在系统中有一个父进程和两个子进程活动。让每一个进程在屏幕上现实一个字符:父进程显示字符’a’;子进程分别显示字符’b’和’c’。试观察记录屏幕上的显示结果并分析原因。-use system calls fork () to create two child process. When running, the system is a process and the father o
  3. 所属分类:Internet/网络编程

    • 发布日期:2024-05-08
    • 文件大小:10240
    • 提供者:杨宇文
  1. (进程通信)

    0下载:
  2. 进程管理中的进程通信 父进程和子进程间的通信 以及五种通信方式-process management of the process of communication process and the father of the child process and the communication between the five means of communication
  3. 所属分类:界面编程

    • 发布日期:2024-05-08
    • 文件大小:7674880
    • 提供者:王成
  1. 进程控制实验

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

    • 发布日期:2024-05-08
    • 文件大小:1948672
    • 提供者:俞鹏
  1. pipedoc

    0下载:
  2. 管道(Pipe)实际是用于进程间通信的一段共享内存,创建管道的进程称为管道服务器,连接到一个管道的进程为管道客户机。一个进程在向管道写入数据后,另一进程就可以从管道的另一端将其读取出来。匿名管道(Anonymous Pipes)是在父进程和子进程间单向传输数据的一种未命名的管道,只能在本地计算机中使用,而不可用于网络间的通信。-pipes (Pipe) for the actual inter-process communication
  3. 所属分类:软件工程

    • 发布日期:2024-05-08
    • 文件大小:6144
    • 提供者:王晓鹏
  1. PipeExample

    0下载:
  2. 进程间通过管道通信,父进程传消息给子进程-inter-process communication through the pipeline, the father of the process- to-process information
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-08
    • 文件大小:32768
    • 提供者:cjw
  1. pipe_fork

    0下载:
  2. Linux网络编程。程序创建一个管道,并发起一个新的进程。父进程往管道里写数据,子进程往外读数据。-Linux Network Programming. Procedures to create a pipeline and has initiated a new process. Father of the process of writing data to the pipe, sub-process of reading data
  3. 所属分类:Internet/网络编程

    • 发布日期:2024-05-08
    • 文件大小:1024
    • 提供者:古月
  1. prglist

    0下载:
  2. 获取当前系统进程列表,包括进程名称、PID、父进程ID、模块ID、引用计数、线程计数、优先权等信息,可中止进程,查看进程模块、内存占用情况。
  3. 所属分类:系统编程

    • 发布日期:2024-05-08
    • 文件大小:296960
    • 提供者:奈恩斯基
  1. printTree

    0下载:
  2. 打印windows进程树(用以测试 windows的子进程ID是否一定大于父进程ID)-Print windows process tree (a subset of windows to test whether the process ID greater than the parent process ID)
  3. 所属分类:Windows编程

    • 发布日期:2024-05-08
    • 文件大小:7168
    • 提供者:shi
  1. shi31

    0下载:
  2. 实现父进程创建子进程,实现父子同步,调用简单文本-Father of the process to achieve the creation of sub-processes, to achieve synchronization son, called a simple text
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-08
    • 文件大小:1024
    • 提供者:不懂
  1. createpc

    0下载:
  2. 用于进程创建模拟实现,进程的树形结构采用广义二叉树的方式进行存储。可以输入createpc 命令创建进程,输入showdetail 显示每个 进程及其子进程的信息,测试命令解释如下: 1) createpc 创建进程命令。 参数: 1 pid(进程id)、 2 ppid(父进程id)、3 prio(优先级)。 示例: createpc(2,1,2) 。创建一个进程,其进程号为2,父进程号为1,优先级 为2。 2)
  3. 所属分类:Windows编程

    • 发布日期:2024-05-08
    • 文件大小:2048
    • 提供者:height
  1. pipe

    0下载:
  2. 进程间通信的一直方式,采用管道,此处用的是匿名管道,即子进程与父进程间的通信-Inter-process communication methods have been used pipe, used here is the anonymous pipe, that is, the child process and parent inter-process communication
  3. 所属分类:进程与线程

    • 发布日期:2024-05-08
    • 文件大小:3761152
    • 提供者:yuanzi
  1. threecodes

    9下载:
  2. 1、 用C语言写一个程序名字为procs4,该程序运行过程中共有4个进程,procs4程序(父进程)创建2个子进程p1和p2,p1子进程再创建一个子进程p3。4个进程完成如下工作: 父进程并打印字符串“I am main process”;p1子进程打印“I am child process p1”字符串;p2子进程打印“I am child process p2”;子进程p3打印字符串“I am child process p3”
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-08
    • 文件大小:2048
    • 提供者:杨子坤
  1. osruanzhongduan

    0下载:
  2. 操作系统实验 进程软中断通信 编写一段程序,父进程创建一个子进程p1;并使子进程利用系统调用kill()向父进程发送信号,父进程得到信号后输出字符串“received p1 signal.” 。 -Experimental process, the operating system write a soft interrupt communication procedures, the parent creates a child pr
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-08
    • 文件大小:31744
    • 提供者:董俐
  1. 1

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

    • 发布日期:2024-05-08
    • 文件大小:8192
    • 提供者:小斧子
  1. 进程通信之三 父进程传参数与子进程返回值

    0下载:
  2. 说明进程之间通讯技术及使用方法,附带程序例程(Process communication)
  3. 所属分类:其他小程序

    • 发布日期:2024-05-08
    • 文件大小:76800
    • 提供者:joyce109g
  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编程

    • 发布日期:2024-05-08
    • 文件大小:711680
    • 提供者:仓鼠123
« 12 3 4 5 6 7 8 9 10 »

源码中国 www.ymcn.org