public static final int MSG_DATA_RECORD = 0x0007;
public static final int MSG_FUNCTION_ENTRY = 0x0008;
public static final int MSG_FUNCTION_EXIT = 0x0009;
- public final static int MSG_FUNCTION_BODY = 0x000A;
public static final int MSG_FILE_FUNCTION_ENTRY = 0x000C;
public static final int MSG_FILE_FUNCTION_EXIT = 0x000D;
public static final int MSG_CONTEXT_SWITCH_ENTRY = 0x0010;
public final static int MSG_WEB_FUNCTION_EXIT = 0x0016;
public final static int MSG_APP_STARTUP = 0x0019;
public final static int MSG_WEB_APP_STARTUP = 0x001A;
+ public final static int MSG_FUNCTION_BODY = 0x0020;
// data probe message id
public static final int MSG_PROBE_MIN = 0x0101;
case ProtocolConstants.MSG_DATA_ERROR: // protocol 3.0
output = new ErrorData();
break;
- case ProtocolConstants.MSG_FUNCTION_BODY:
- output = new FunctionBodyInstrumentData();
- break;
default: // unknown message
Logger.error("Unknown message ID(%d)", msgID);
break;
case ProtocolConstants.MSG_WEB_FUNCTION_EXIT: // protocol 4.0
output = new WebProfileData();
break;
+ case ProtocolConstants.MSG_FUNCTION_BODY: // protocol 4.0
+ output = new FunctionBodyInstrumentData();
+ break;
default: // unknown message
Logger.error("Unknown message ID(%d)", msgID);
break;