1830525 Members
2643 Online
110006 Solutions
New Discussion

HP UX 11.0 issue

 
Baiju J Anthony
New Member

HP UX 11.0 issue

 
1 REPLY 1
Carlos Fernandez Riera
Honored Contributor

Re: HP UX 11.0 issue

To get a correct understanding of this report you may be able of write C( at least to read) and know about system calls and return codes of system calls.


These are ending lines of your report:

waitpid(-1, 0x7f7e0d08, WNOHANG) ................................. ERR#10 ECHILD
ioctl(3, FIOSNBIO, 0x7f7e0c84) ................................... = 0
accept(3, 0x7f7e0ccc, 0x7f7e0cc4) ................................ [sleeping]


It was telling you a waitpid funtion return a errno ( see /usr/include/sys/errno.h) 10 ( ENOCHILD); this is the child process has dead, or had not be created.


I known it is difficult but you tracing system calls.
unsupported