catch exit status of daemon
From: sudipm.mukherjee@gmail.com (Sudip Mukherjee)
Date: 2015-01-07 08:05:56
On Wed, Jan 7, 2015 at 12:57 AM, Nizam Haider [off-list ref] wrote:
Anuz Pratap Singh Tomar <chambilkethakur <at> gmail.com> writes:quoted
On Tue, Jan 6, 2015 at 3:22 PM, Yash Jain <yash2learn <at> gmail.com>wrote:Hello All,I have one dumb question,quoted
I wanted to write a process which monitors the exit status of the daemon, The Main process would fork a service, which would internally fork a childand , exit from the process. If main process wants to query the status of the daemon, how it can be achived.quoted
For ex : Process A would call a syslog service, which would internally fork achild, daemon it and exit, so if process A wants to wait for the syslog process, is it possible.quoted
waitpid() signal()WIFEXITED WEXITSTATUS
doubt -- wait and waitpid will be for the parent process to wait for its child. but for a daemon the parent is init . so the exit status should be sent to init and not to his process. then how does he get the exit status sudip
quoted