简体   繁体   中英

to system() or fork()/exec()?

There appear to be two common ways of running an external executable from C in unix, the

system()

call and

pid = fork()
switch(pid)
//switch statement based on return value of pid, 
//one branch of which will include and exec() command

Is there any reason to prefer a fork/exec over system in the case where they are functionally equivalent (parent process waits for child to finish, no complex information is returned from child)?.

system executes a command-interpreter, ie a shell, which (a) is slower than a direct fork/exec, (b) may behave differently on different systems and (c) is a potential security hazard if you pass it a string from an untrusted source. Also, system waits for the child process to exit, while you might want it to run concurrently with the parent process.

More in general, the low-level fork/exec gives you additional control: before or in between the two operations, you might want to chdir , open pipes, close file descriptors, set up shared memory, etc.

(By different systems, I don't mean Windows vs. Unix (as Windows doesn't even have fork): I'm talking Red Hat Linux vs. Ubuntu. The former uses Bash to execute what is passed to system , the latter a lightweight POSIX-compatible shell.)

fork() creates a new process. If you don't need to do that, just use system() (or popen() ). You might want a second process to achieve parallelism, or for finer-grained control over the job, but often you just don't care for that if the job is meant to be synchronous.

On the other hand, I find that 95% of uses of system() are unnecessary or would somehow be better off done another way (eg using zlib instead of system("gzip") ). So maybe the best answer is to use neither!

Going via system() additionally invokes a shell process, which might not be what you want.

Also the calling process is notified only when such shell dies not when the actual process run by the shell died.

system() will type out the command and execute it like a user would have typed out. i mostly saw it like system("pause"); system("cls"); system("pause"); system("cls");

But if you need to control the child process, you want to fork.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM