Hi,

This just happened to me, too.

The program processes audio data. For each 16384 byte chunk read, it kills *all* of my processes with kill(-1, SIGTERM);

cli[cnum].pid is set to -1 in the signal handler for SIGCHLD.

void xdisp_terminate(int cnum)
{
        if (cnum  < 0 || cnum >= NUMCLI)
                return;
        kill(cli[cnum].pid, SIGTERM);
}

No idea how to fix this.

Regards
Jörn Heissler



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to