public ReplyPacket setThreadStart() {
// Prepare corresponding event
byte eventKind = JDWPConstants.EventKind.THREAD_START;
byte suspendPolicy = JDWPConstants.SuspendPolicy.ALL;
EventMod[] mods = new EventMod[0];
Event event = new Event(eventKind, suspendPolicy, mods);
return setEvent(event);
}