Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
273 views
in Technique[技术] by (71.8m points)

c - program not executing anything after a call to system()

I am calling a command via system(command) call. But no other code is executed after this system() call.

Why is so? I thought, system() would create a child process for "command" execution and my program (parent of "command"-child) will continue executing code after that.

Am I not understanding system() correctly?

code:

printf("before 
");
system("tail -f filename");       /* long lived - never returns */
printf("after 
");

Here, I do not see after getting printed ever.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The system(3) function causes your process to wait for the completion of the child.

Edit 0:

You have to use the classic pair of fork(2) and execve(2) for what you want to do. You might also check whether your C library provides POSIX spawn(3).

Edit 1:

Look into waitpid(2) to keep the parent around.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...