User profile: jsmith

User info
User name:jsmith
Location:Illinois, USA
Statistical data
Birthdate:1974
Gender:Male
Occupation:Programmer
Skills:C
C++
Pascal
Assembly
History
Joined:
Number of posts:5804
Latest posts:

is there any way to trace a system signal to it's generator?
No, there isn't. signal() is actually a deprecated function in favor of sigaction().

Running a Program From Within a Program
The standard way to have a Unix program launch another program in the manner of a shell is: 1. Cre...

is there any way to trace a system signal to it's generator?
IIRC if you have your app register for SIGTERM via sigaction() instead of signal(), the struct sigin...

How can I catch an exception throw from other shared library?
It is generally a bad idea to throw exceptions beyond the boundary of a library because you cannot b...

Error Loading Shared Libraries
Basically, if you want to use LD_LIBRARY_PATH to find the .so in the directory where it was, you sho...