bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: rcs configure hang


From: Paul Eggert
Subject: Re: rcs configure hang
Date: Thu, 5 Nov 2020 14:52:04 -0800
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0

On 11/5/20 2:28 PM, Kelly Wang (kellythw) wrote:
When strace hang, I do 'ps -elf | grep strace' from other terminal and do kill -9 
<process id from ps -elf>
kill -s INT $(ps -o pid= -C a.out) looks like not working from my server.

Assuming you're using the Linux kernel signal numbers, you should be able to get a process ID (say, 4729) and use this:

kill -2 4729

instead of the fancier 'kill' command I suggested. Also, try this in another session:

kill -14 4729

which sends the ALRM signal instead of the INT signal. Either way, see what 'tr' says.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]