You are not logged in.
Pages: 1
An easy question for someone more knowledgeable than me: What is a break signal? I'm customising Screen, and can't find an answer to this Q anywhere.
.oO Komodo Dave Oo.
Offline
Break signal is SIGBRK (same as SIGABRT = abort signal). It's signal #6 according to the the C headers.
If you need to send it to a process, you can do:
# kill -6 $pid
Offline
What does it actually do though, phrakture? Is it just one particular way of halting whatever process you send the signal to?
.oO Komodo Dave Oo.
Offline
What does it actually do though, phrakture? Is it just one particular way of halting whatever process you send the signal to?
Hmm, by default I believe it just kills the process, but developers can specifically handle SIGBRK (the only ones you can't catch are SIGKILL and SIGSTOP) - I can make an app that catches SIGBRK and spits out a smiley face if I so wanted.
So yes it *can* kill a process, but it's not always true.
Offline
Okley-Dokley, I understand now
.oO Komodo Dave Oo.
Offline
Pages: 1