Files
kotlin-fork/car_fmw/src/proto/Debug.proto
T

19 lines
301 B
Protocol Buffer

syntax = "proto3";
package carkot;
message DebugRequest {
Type type = 1;
enum Type {
MEMORY_STATS = 0;
}
}
message DebugResponseMemoryStats {
int32 heapDynamicTail = 1;
int32 heapStaticTail = 2;
int32 heapDynamicMaxBytes = 3;
int32 heapDynamicTotalBytes = 4;
}