• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Unix signals (specifically sig32)

CTho9305

Elite Member
I'm writing a web proxy (homework assignment). When I'm debugging with gdb, I see SIG32's being caught:
Program received signal SIG32, Real-time event 32?
....but the program does seem to work fine. What does sig32 mean, and what can cause it? I did try some googling a bit without much benefit 🙁.
 
Signals are used in UNIX to send information to a process or to handle an exception. You can manully send signals to a process using to kill command. the defualt if you do no enter a signal number is 15..which is SIGTERM, basically kills the process.......some keystrokes are mapped to a signal...i.e, control c ........ Signal 32 happens to be SIGDIL.... I have no idea what it the DIL signal is supposed to do or what it indicated.... The above was read from a book concerned with HP-UX 11i implmentation of UNIX but all other flavors of UNIX (Solaris,AIX,Tru-64 ).... should be the similar.
 
Back
Top