CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 系统编程 搜索资源 - 子进程

搜索资源列表

  1. tinybc

    0下载:
  2. 创建一个具有SHELL功能的小程序. 利用管道技术及FORK创建子进程-SHELL create a function of small programs. Technology and the use of pipelines FORK-creation process
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:989byte
    • 提供者:陈福建
  1. guandaotongxin

    0下载:
  2. 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
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:4.37kb
    • 提供者:witkey_eagle
  1. fork_textcanjian

    0下载:
  2. 1、 了解系统调用fork()、execl()、exit()、getpid()和waitpid()的功能和实现过程 2、 编写一段程序实现以下功能: a) 使用系统调用fork()创建两个子进程 b) 父进程重复显示字符串”parent:”,并使用函数getpid()显示自己的进程ID。 c) 两个子进程分别重复显示字符串”child:”,并使用函数getpid()显示自己的进程ID 3、 编写一段程序实现以下功能: a) 使用系统调用fork()创建一个子进程 b)
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:8.02kb
    • 提供者:witkey_eagle
  1. PipeExample

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

    • 发布日期:2008-10-13
    • 文件大小:2.62kb
    • 提供者:cjw
  1. 创建子进程

    0下载:
  2. unix环境下进程编程。-programming process.
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:1.87kb
    • 提供者:璇松
  1. process

    0下载:
  2. 进程间调度,共享内存,进程通信,子进程创建-inter-process scheduling, shared memory and process communications, process-creation
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:912.72kb
    • 提供者:jiaomingliang
  1. debugsrc

    0下载:
  2. 反调试插件 插件参考了 IsDebugPresent 的 ASM 代码, 用C 实现, 有三个命令. . 手动 Disable 子进程 DebugPrivlege 2. 手动 Enable 子进程 DebugPrivlege 3. 程序加载和 Restart 时可选择自动 Disable DebugPrivlege
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:35.17kb
    • 提供者:张京
  1. dshell

    0下载:
  2. 本软件模拟Shell 的命令解释程序,了解如何创建子进程来执行一项专门的工作以及父进程如何继续子进程的工作。编写一个C语言程序作为Linux内核的Shell命令行解释程序,所执行的结果需和系统命令方式保持一致。基本运行方式为:当用户敲入命令行如:identifier[identifier[identifier]],Shell应该解析命令行参数指针数组argv[argc]。
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:23.94kb
    • 提供者:qiumingzhou
  1. signal to killchild

    0下载:
  2. 用系统调用signal()让父进程捕捉键盘上来的中断信号(按Ctrl-C键);当捕捉到中断信号后,父进程用系统调用kill()向两个子进程发出信号,子进程捕捉到信号后分别输出下列信息后终止:  Child Process 1 is Killed by Parent!  Child Process 2 is Killed by Parent! 父进程等待两个子进程终止后,输出如下的信息后终止: Parent Process is Killed!-with system call signal ()
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:1.24kb
    • 提供者:microstone
  1. process

    0下载:
  2. linux中演示如何产生子进程,等待子进程退出的示例
  3. 所属分类:Linux/Unix编程

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

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

    • 发布日期:2010-10-22
    • 文件大小:1.2kb
    • 提供者:jalion@yeah.net
  1. gcc fork函数

    0下载:
  2. gcc 子进程编程示例代码
  3. 所属分类:Linux/Unix编程

  1. IO多路复用 SELECT函数

    1下载:
  2. IO的多路复用(Select函数) 注:为了解决创建子进程带来的系统资源消耗而采用多路I/O模型 一般来说当我们在向文件读写时,进程有可能读写出阻塞,如果我们不希望阻塞,我们的一个选择是用select系统调用。只要我们设置好select的各个参数那么文件可以读写的时候select通知我们说可以读写,在我们调用select时进程会一直阻塞到以下一种情况发生 1) 有文件可以读 2) 有文件可以写 3) 超过所设置的时间
  3. 所属分类:Linux/Unix编程

  1. fork

    0下载:
  2. 在linux或unix中,使用系统调用fork( )创建两个子进程,并观察子进程和父进程的运行情况。-In linux or unix, the use of system calls fork () to create two sub-processes, and to observe the sub-process and the operation of the parent process.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-29
    • 文件大小:677byte
    • 提供者:li
  1. pipe

    0下载:
  2. linux下管道监视程序,父进程通过管道发送信息给子进程-linux monitoring procedures under the pipeline, the father of the process of sending information through the pipeline to the child process
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-28
    • 文件大小:612byte
    • 提供者:hc
  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 program

    • 发布日期:2017-04-03
    • 文件大小:667byte
    • 提供者:不懂
  1. fork

    0下载:
  2. linux进程控制编程。使用fork函数新建立一个子进程,其中的父进程返回子进程的PID,子进程的返回值为0.-linux programming process control. Fork function using a subset of the newly created process, in which the parent process child process to return to the PID, the return value of the child proces
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-28
    • 文件大小:1.84kb
    • 提供者:牛志强
  1. process_control

    0下载:
  2. 进程控制,linux编程,系统调用,fork()、exec()、exit()、waitpid()函数的功能以及实现过程,1创建两个子进程,重复显示代码2调用exec()更换自己的代码。计算机操作系统第三版实验二-process control :fork()exec()waitpid()exit().show some words constantly both in the parent s and children process
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-31
    • 文件大小:791byte
    • 提供者:柳佳林
  1. threecodes

    5下载:
  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”,然后使用exec(族)系统调用打印当前目录下文件和子目录下
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-01
    • 文件大小:1.66kb
    • 提供者:杨子坤
  1. Monitor

    0下载:
  2. 进程监控程序,用于将父进程监控子进程是否死掉,如果死掉,会重启进程。-Process control procedures, the process used to monitor the child process the parent is dead, if dead, it will restart the process.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-31
    • 文件大小:1.02kb
    • 提供者:lxdong
« 12 3 4 5 »
搜珍网 www.dssz.com