36 lines
395 B
C
36 lines
395 B
C
|
#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
|