39 lines
448 B
C
39 lines
448 B
C
#pragma once
|
|
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct topo_desc;
|
|
|
|
int
|
|
topo_num_core(void);
|
|
|
|
int
|
|
topo_num_numa(void);
|
|
|
|
int
|
|
topo_core_to_numa(int coreid);
|
|
|
|
void
|
|
topo_destroy(void);
|
|
|
|
int
|
|
topo_init(int enable_alloc, int verbose);
|
|
|
|
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
|