Does someone know how to integrate a collection of programs as one whole program?
Thanks. :)
Ich bin würdig 0 Light Poster
Recommended Answers
Jump to PostHave one controlling program that can start and kill the others with system calls such as fork() and execve().
Jump to Postfork() and exec*() work together to make a new process. I put a * after exec because there is a group of exec functions such as execl, execvp, and others.
fork():
Fork copies the program completely and the copy continues running the parent program's code starting on the line …
All 8 Replies
Moschops 683 Practically a Master Poster Featured Poster
D33wakar 36 Posting Whiz in Training
Ich bin würdig 0 Light Poster
Ich bin würdig 0 Light Poster
YAMNA MIDHAT -5 Junior Poster in Training

Mouche
Ich bin würdig 0 Light Poster
Smeagel13 5 Junior Poster in Training
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.