The UNIX and Linux Forums
>
Top Forums
>
High Level Programming
parent not waiting until child complete executing another program through execl()
User Name
Remember Me?
Password
Google UNIX.COM
Forums
Portal
Register
Rules & FAQ
Contribute
Members List
Arcade
Search
Today's Posts
Mark Forums Read
Thread
:
parent not waiting until child complete executing another program through execl()
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
#
4
(
permalink
)
05-15-2008
vvaidyan
Registered User
Join Date: Mar 2008
Posts: 15
# define MAXLINE 1024
char line[MAXLINE];
while( (rv = read(fd2[0], line, MAXLINE)) != 0)
{
// do whatever
}
vvaidyan
View Public Profile
Find all posts by vvaidyan