com.ibm.dtfj.image
Interface ImageSignalHandler
public interface ImageSignalHandler
This class represents a registered signal handler in a process
- Author:
- PBurka
getSignalNumber
int getSignalNumber()
- Returns:
- the OS signal number that this handler is registered for
getSignalName
java.lang.String getSignalName()
- Returns:
- the name of the OS signal number that this handler is registered for
getHandler
ImagePointer getHandler()
- Returns:
- the address of the function which is registered as the handler for
this signal, or null if the signal has a built-in handler
isSIG_DFL
boolean isSIG_DFL()
- Returns:
- true if the signal is set to the built-in SIG_DFL handler, false otherwise
isSIG_IGN
boolean isSIG_IGN()
- Returns:
- true if the signal is set to the built-in SIG_IGN handler, false otherwise
isSIG_ERR
boolean isSIG_ERR()
- Returns:
- true if the signal is set to the built-in SIG_ERR handler, false otherwise