manu
manu

Reputation: 322

vfork() failed with error no 513

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

Answers (1)

Anton Oshchepko
Anton Oshchepko

Reputation: 65

From description into kernel sources error 513 occurs if parent thread have pending signals (SIGTERM, SIGUSR1, SIGSEGV and others).

Upvotes: 0

Related Questions