由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - spawn a child process
相关主题
编写支持CGI的web服务器大致原理 (转载)parsing file in node: js or python ?
问问跟Linux Kernel Programming 有关的问题multi threading 还是 multi processing
如何停止后台的unix process?Question on synchronization between processes
multithread and c++ destructora dummy OS question
[合集] C 编程error求教!can struct be derived from?
用pexpect写自动登录请教一道题 (转载)
node.js child process: 怎样保证1个命令执行完了再执行下一个?问个Python的问题
Node child process的spawn的 command argument怎么用variable ?*** help needed! on MATLAB GUI ***
相关话题的讨论汇总
话题: spawn话题: process话题: child话题: unix话题: fork
进入Programming版参与讨论
1 (共1页)
o*****l
发帖数: 539
1
in UNIX, we can spawn a child process by fork(), is there any other way to
spawn a child process?
a****l
发帖数: 8211
2
why do you want to have another identical feature? Just for fun?

【在 o*****l 的大作中提到】
: in UNIX, we can spawn a child process by fork(), is there any other way to
: spawn a child process?

o*****l
发帖数: 539
3
I was asked this question during a interview.

【在 a****l 的大作中提到】
: why do you want to have another identical feature? Just for fun?
b********n
发帖数: 609
4
exec

【在 o*****l 的大作中提到】
: in UNIX, we can spawn a child process by fork(), is there any other way to
: spawn a child process?

X****r
发帖数: 3557
5
The exec() family of functions replaces the current process
image with a new process image. They do not spawn any child
process.

【在 b********n 的大作中提到】
: exec
w***g
发帖数: 5958
6
vfork哈哈.一般vfork后立刻调用exec.

【在 o*****l 的大作中提到】
: in UNIX, we can spawn a child process by fork(), is there any other way to
: spawn a child process?

1 (共1页)
进入Programming版参与讨论
相关主题
*** help needed! on MATLAB GUI ***[合集] C 编程error求教!
how to use make file in Visual c++用pexpect写自动登录
how to find the date of today in UNIX?node.js child process: 怎样保证1个命令执行完了再执行下一个?
[转载] Unix/Posix system programming trainingNode child process的spawn的 command argument怎么用variable ?
编写支持CGI的web服务器大致原理 (转载)parsing file in node: js or python ?
问问跟Linux Kernel Programming 有关的问题multi threading 还是 multi processing
如何停止后台的unix process?Question on synchronization between processes
multithread and c++ destructora dummy OS question
相关话题的讨论汇总
话题: spawn话题: process话题: child话题: unix话题: fork