libtopo/inc/topo.h

36 lines
395 B
C
Raw Normal View History

2022-05-26 16:25:30 +00:00
#pragma once
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif
int
topo_num_core();
int
topo_num_numa();
int
topo_core_to_numa(int coreid);
void
topo_destroy();
int
topo_init(int verbose, int alloc_init);
void *
topo_malloc(unsigned int node, size_t size);
void
topo_free(unsigned int node, void * addr);
uint64_t
topo_uptime_ns();
#ifdef __cplusplus
} // extern "C"
#endif