case JdwpReplyPacket.ABSENT_INFORMATION:
return THREAD_STATUS_UNKNOWN;
case JdwpReplyPacket.INVALID_THREAD:
return THREAD_STATUS_NOT_STARTED;
}
defaultReplyErrorHandler(replyPacket.errorCode());
DataInputStream replyData = replyPacket.dataInStream();
int threadStatus = readInt(
"thread status", threadStatusMap(), replyData); //$NON-NLS-1$
readInt("suspend status", suspendStatusStrings(), replyData); //$NON-NLS-1$
switch (threadStatus) {