When I try to compile some signal handling code on BGL (using blrts_xlC)
which uses "SA_SIGINFO" -> i.e one of the defined flags to the sigaction()
call, I get the following error:
"1540-0274 (S) The name lookup for "SA_SIGINFO" did not find a declaration."
The code is inside a .cpp file and blrts_xlC is used.
I thought it was to do with some C++ issues, so I isolated the signal code
into a .c file and used blrts_xlc.
But then I still get this error:
"1506-045 (S) Undeclared identifier SA_SIGINFO."
Any ideas on how to make SA_SIGINFO visible?