搜索资源列表
guandaotongxin
- 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
fork_textcanjian
- 1、 了解系统调用fork()、execl()、exit()、getpid()和waitpid()的功能和实现过程 2、 编写一段程序实现以下功能: a) 使用系统调用fork()创建两个子进程 b) 父进程重复显示字符串”parent:”,并使用函数getpid()显示自己的进程ID。 c) 两个子进程分别重复显示字符串”child:”,并使用函数getpid()显示自己的进程ID 3、 编写一段程序实现以下功能: a) 使用系统调用fork()创建一个子进程 b)
threadlibrary
- I use C to implement thread operating,include initiallize,fork,yield,exit,kill. You should have driver to use this library. I choose array for ready queue,and strcut for Thread Control Block.
fork
- Linux fork.c 源代码,带中文注释-Linux fork.c
myshell
- 应用UNIX的fork()等系统调用,编写一个c程序具有以下功能: a) 实现Shell的基本功能,包括有:打印提示符;接受和分析命令行(滤去无效的空格、tab符号以及换行符等);执行命令(要有出错处理;输入exit或者bye退出);返回父进程; b) 处理后台程序(不需要wait) c) 处理多行命令(分析命令行中的‘ ’并处理之) d)应用 dup(), pipe()系统调用具有输入输出重定向以及管道功能;-Application of UNIX s fork () system call,
fork256
- the hash function FORK-256,256位的安全散列验证算法,SHA-256的替代者。-the hash function FORK-256,256-bit secure hash authentication algorithm, SHA-256 replacement for him.
01051312.tar
- 应用UNIX的fork()等系统调用,编写一个c程序具有以下功能: a) 实现Shell的基本功能,包括有:打印提示符;接受和分析命令行(滤去无效的空格、tab符号以及换行符等);执行命令(要有出错处理;输入exit或者bye退出);返回父进程; b) 处理后台程序(不需要wait) c) 处理多行 -With C++ Prepared Linux myshell, support the redirect and pipe symbols, support for CD command r
code
- linux文件I-O exit.c fork.c select.c write.c waitpid.c execlp.c execle.c-linux file IO exit.c fork.c select.c write.c waitpid.c
ivi_ls
- 目的: 1、应用UNIX的fork()等系统调用,编写一个c程序具有以下功能: a) 实现Shell的基本功能,包括有:打印提示符; 接受和分析命令行(滤去无效的空格、tab符号以及换行符等); 执行命令(要有出错处理;输入exit或者bye退出);返回父进程; b) 处理后台程序(不需要wait) c) 处理多行命令(分析命令行中的‘ ’并处理之) d)应用 dup(), pipe()系统调用具有输入输出重定向以及管道功能;
third
- linux 下用C编程的fork exec wait exit 函数的实例!-the example of fork exec wait exit
process_control
- 进程控制,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
dgl.c.tar
- The beginnings of a fork of DirectFB to work with the MGL in a sort of QuartzXtreme capacity, I only put in what I have done and nothing else, as I create more I will put that up here as well. So there it is
FORK
- 进程的创建。编制一段程序,使用系统调用fork()创建两个子进程,在此程序运 行时,系统中就有一个父进程和两个子进程在活动。让每一个进程在屏幕上显示一 个字符:父进程显示字符a,两个子进程分别显示字符b和子符c。-The process of creation. The preparation of a program that uses system calls fork () to create two sub-processes, in the operation of this
fork
- 使用C语言实现进程间的控制。并使用KILL命令杀死对应进程-use c to fork
fork_test.c.tar
- shell下面子命令的程序框架,以ls -l 为例子。 对fork的应用实例。-ready for shell,how to create an easy shell in the linux.
simpleshell.c
- A simple shell which fork a child and execute on child
io-writesl
- fork.c contains the help-routines for the fork system call. - fork.c contains the help-routines for the fork system call.
fork
- \file api_exec.c Initialize dispatch table with the immidiate mode functions.
fork
- 操作系统上机作业:fork的使用。 附实验报告(OS job : how to use fork. With experiment report)
fork注释
- Linux源代码阅读, 其中fork.c部分内核代码注释(Linux fork.c kernel code annotation)