Reputation: 322
In RHEL 6.6 based environment, we are doing IO from a thread which is created by XML rpc server. The thread executes the external command which does vfork(). The vfork() system call fails with errorno 513.
What may be the possible reasons for it?
Upvotes: 0
Views: 331
Reputation: 65
From description into kernel sources error 513 occurs if parent thread have pending signals (SIGTERM, SIGUSR1, SIGSEGV and others).
Upvotes: 0