搜索资源列表

  1. event

    0下载:
  2. 文件中第一个方法创建了一个进程的副本,以子进程模式 (由命令行指定) 工作;第二个方法创建一个事件和一个子进程,然后等待子进程在返回前向事件发出信号;第三个方法在子进程模式下被调用,其功能只是向父进程发出终止信号-the first method creates a process s copy to a child process mode (designated by the command line) The second way
  3. 所属分类:进程与线程

    • 发布日期:2024-05-20
    • 文件大小:2048
    • 提供者:凤佳梅
  1. 4

    0下载:
  2. 为了确保调用,首先出一个子进程,父进程退出,然后子进程调用。创建守护进程-In order to ensure the call, first a child process, the parent process exits, then the child process calls. Create a daemon
  3. 所属分类:其他小程序

    • 发布日期:2024-05-20
    • 文件大小:15360
    • 提供者:张清莉
  1. plist

    0下载:
  2. 用api函数些的遍历进程,带父进程的工具,-GetProcessCommendLine
  3. 所属分类:进程与线程

    • 发布日期:2024-05-20
    • 文件大小:4096
    • 提供者:bsyang
  1. DiyParentProceessID

    0下载:
  2. 修改PED结构让创建的子进程的父进程PID显示为其他进程的PID-Modify the PED structure to create the parent process PID display for other process PID
  3. 所属分类:系统编程

    • 发布日期:2024-05-20
    • 文件大小:605184
    • 提供者:王绍朋
  1. Linux-shell)

    0下载:
  2. 1、 首先利用readline()函数读到用户输入的shell命令,采用一个数组来保存shell命令,数组有固定的大小。 2、 在main()函数中根据字符串中是否存在 "&" 字符判断是否为后台进程。如果是后台命令则判断是否是多条指令,如果不是将分割后的命令传递给pipel()函数,如果是的话分割之后利用while循环将命令传递给pipel()函数。如果不是后台进程,需要用waitpid()函数等待子进程结束后父进程才继续。
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-20
    • 文件大小:29696
    • 提供者:rrr
  1. Pipe

    0下载:
  2. 进程间通信,匿名管道,包括服务端和客户端,只适用于父进程与子进程间的通信-Interprocess communication, anonymous pipes, including server and client, is only applicable to the parent and child to communicate between processes
  3. 所属分类:进程与线程

    • 发布日期:2024-05-20
    • 文件大小:68608
    • 提供者:张腾
  1. copy

    0下载:
  2. Linux进程控制:父进程打开一个文件,然后创建两个子进程。子进程1将打开文件中的小写字母换成大写字母。子进程2将文件内容读出后打印。父进程等待两个子进程结束以后关闭文件,结束。 -Linux process control: a parent process opens a file, and then create two sub-processes. A child process will open the file in
  3. 所属分类:嵌入式Linux

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:谢海燕
  1. shellANDC

    0下载:
  2. 查询Linux进程运行情况,并打印输出。用for循环打印父进程和子进程-Query the Linux process operation, and print output
  3. 所属分类:Linux驱动

    • 发布日期:2024-05-20
    • 文件大小:74752
    • 提供者:大树
  1. jinchengchuangjianxitong

    0下载:
  2. 使用系统调用fork( )创建两个子进程。当此程序运行时,在系统中有一个父进程和两个子进程活动。让每一个进程在屏幕上显示一个字符,如父进程显示 a ,子进程分别显示字符 b 和字符 c 。试观察记录屏幕上的显示结果,并分析原因; 修改程序,每一个进程循环显示一句话,如子进程显示 daughter … 及 son …… ,父进程显示 parent …… -The process creation system
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-20
    • 文件大小:4096
    • 提供者:lijie
  1. jinchegndechuangjian

    0下载:
  2. 编写一段源程序,使系统调用fork()创建两个子进程,当此程序运行时,在系统中有 一个父进程和两个子进程活动。让每一个进程在屏幕上显示一个字符:父进程显示字符“a” 子进程分别显示字符“b”和字符“c”。试观察纪录屏幕上的显示结果,并分析原因。-Write a program, make the system call fork () to create two sub process, when running, the sys
  3. 所属分类:Linux驱动

    • 发布日期:2024-05-20
    • 文件大小:4096
    • 提供者:付小杰
  1. jinchegndeguandaotongxin

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

    • 发布日期:2024-05-20
    • 文件大小:3072
    • 提供者:付小杰
  1. ProcessManager

    0下载:
  2. 1.进程的创建 编写一段程序,使用系统调用fork()创建两个子进程。当此程序运行时,在系统中有一个父进程和两个子进程活动。让每一个进程在屏幕上显示一个字符:父进程显示字符“a”;子进程分别显示字符“b”和字符“c”。试观察记录屏幕上的显示结果,并分析原因。 2.进程的控制 修改已有程序,将每个进程输出一个字符改为每个进程输出几行字符,再观察程序执行时屏幕上的现象,并分析原因。 如果在程序中使用系统调用lockf()来给
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-20
    • 文件大小:791552
    • 提供者:zhangwei
  1. P1-3.c

    0下载:
  2. 操作系统实验1,Linux 系统开发。 遍历所有的进程,并输出它们的名字、父进程名字、进程状态,最后输出所有进程状态的统计信息。-collect information of all the processes
  3. 所属分类:Linux驱动

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:Rex An
  1. pipe

    0下载:
  2. A)编写myls在既定的文件中列出当前工作目录文件的个性化列表(每行一个文件目录包括inode 号,硬链接数,文件名,大小,最近修改时间),不需要排序。并且报告处理花费的总时间(屏幕显示)。 B)Process – model ( fork() + exec() + pipe() ): parent 进程:产生 child 进程,接受并显示 child 进程传回的信息。 child 进程:调用 exec(),执行 A) 中的
  3. 所属分类:进程与线程

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:周易宸
  1. test.tar

    0下载:
  2. QT父子进程间通讯,父进程通过writeData发送数据,子进程通过读取标准输入获取数据。-QT interval parent and child communication, the parent process to obtain data by reading standard input by writeData sending data, sub-processes.
  3. 所属分类:嵌入式Linux

    • 发布日期:2024-05-20
    • 文件大小:768000
    • 提供者:韩晓东
  1. apuepipe

    0下载:
  2. unix进程间通信,父进程从终端读入通过管道传递给子进程,之后子进程写入文件。 -unix inter-process communication, the parent reads piped the terminal to the child by the child process after writing to the file.
  3. 所属分类:Internet/网络编程

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:林意
  1. Code

    0下载:
  2. 一、 编写一段程序,使其现实进程的软中断通信。 1.要求:使用系统调用fork()创建两个子进程,再用系统调用signal()让父进程捕捉键盘上来的中断信号(即按DEL键);当捕捉到中断信号后,父进程用系统调用Kill()向两个子进程发出信号,子进程捕捉到信号后分别输出下列信息后终止: Child Processll is Killed by Parent! Child Processl2 is Killed by Pare
  3. 所属分类:Linux驱动

    • 发布日期:2024-05-20
    • 文件大小:68608
    • 提供者:JING
  1. Producers-and-consumers

    0下载:
  2. 生产者与消费者 设计要求:设计一程序,由一个进程创建三个子进程,三个子进程一个是生产者进程,两个是消费者进程,父子进程都使用父进程创建的共享存储区进行通信,由生产者进程将一个数组中的十个数值发送到由5个缓冲区组成的共享内存中,两个消费者进程轮流接收并输出这十个数值,同时将两个消费者进程读出的数值进行累加求各和。-Producers and consumers Design requirements: to design a pr
  3. 所属分类:进程与线程

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:liuping
  1. process-communicate

    0下载:
  2. 在vc6.0的mfc里面用c++开发的操作系统上机作业,打开父进程debug文件夹里面的父进程exe,即可点击创建子进程,发送消息,以管道方式通信。-In vc6.0 of mfc eyed on c++ operating system developed machine operation, open the parent folder inside debug the parent process exe, you can cli
  3. 所属分类:进程与线程

    • 发布日期:2024-05-20
    • 文件大小:3717120
    • 提供者:xdrdh
  1. XiuGai

    0下载:
  2. VC6.0修改程序父进程。内附APIHOOK例程,可以学习下-VC6.0 modify the program the parent. Included API HOOK routines, can learn under
  3. 所属分类:系统编程

    • 发布日期:2024-05-20
    • 文件大小:761856
    • 提供者:小于
« 1 2 ... 5 6 7 8 9 1011 12 »

源码中国 www.ymcn.org