Class RPmallocThreadStatistics

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

@NativeType("struct rpmalloc_thread_statistics_t") public class RPmallocThreadStatistics extends Struct<RPmallocThreadStatistics> implements NativeResource
struct rpmalloc_thread_statistics_t {
    size_t sizecache;
    size_t spancache;
    size_t thread_to_global;
    size_t global_to_thread;
    struct {
        size_t current;
        size_t peak;
        size_t to_global;
        size_t from_global;
        size_t to_cache;
        size_t from_cache;
        size_t to_reserved;
        size_t from_reserved;
        size_t map_calls;
    } span_use[64];
    struct {
        size_t alloc_current;
        size_t alloc_peak;
        size_t alloc_total;
        size_t free_total;
        size_t spans_to_cache;
        size_t spans_from_cache;
        size_t spans_from_reserved;
        size_t map_calls;
    } size_use[128];
}