I have a binary assembly with -fprofile-arcsand -ftest-coverage. The binary file is controlled by a process monitor, which starts the process as a child process. Then, when I want the process to exit, I have to go through the process monitor. It sends SIGKILLto the process. I found that in this case the files are .gcdanot generated. What can I do?
EDIT: Actually, the process monitor first tries to terminate the process. However, the ProcessMonitor library (used in each process) calls _exitinstead exitwhen the user issues a command to stop the process. This is the cause of all the trouble.
source
share