Module openj9.dtfj
Package com.ibm.j9ddr.view.dtfj.image
Interface J9RASImageDataFactory.ProcessData
-
- Enclosing class:
- J9RASImageDataFactory
public static interface J9RASImageDataFactory.ProcessData
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getEnvironment()
IProcess
getProcess()
String
gpInfo()
Returns the information associated with a crash, such as the signal numberlong
pid()
long
tid()
int
version()
-
-
-
Method Detail
-
version
int version() throws CorruptDataException
- Throws:
CorruptDataException
-
pid
long pid() throws CorruptDataException, DataUnavailable
- Throws:
CorruptDataException
DataUnavailable
-
tid
long tid() throws CorruptDataException, DataUnavailable
- Throws:
CorruptDataException
DataUnavailable
-
gpInfo
String gpInfo() throws CorruptDataException
Returns the information associated with a crash, such as the signal number- Returns:
- if the event of a crash, the string contains the data for this field. If there was not a crash e.g. the dump was requested by the user, then an empty string is returned. If there was a crash, but there is no information available then a null is returned.
- Throws:
CorruptDataException
-
getProcess
IProcess getProcess()
-
getEnvironment
long getEnvironment() throws CorruptDataException
- Throws:
CorruptDataException
-
-