MCPcopy Create free account
hub / github.com/F-Stack/f-stack / eal_runtime_config_path

Function eal_runtime_config_path

dpdk/lib/eal/common/eal_filesystem.h:36–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34
35#define RUNTIME_CONFIG_FNAME "config"
36static inline const char *
37eal_runtime_config_path(void)
38{
39 static char buffer[PATH_MAX]; /* static so auto-zeroed */
40
41 snprintf(buffer, sizeof(buffer), "%s/%s", rte_eal_get_runtime_dir(),
42 RUNTIME_CONFIG_FNAME);
43 return buffer;
44}
45
46/** Path of primary/secondary communication unix socket file. */
47#define MP_SOCKET_FNAME "mp_socket"

Callers 8

rte_eal_config_createFunction · 0.85
rte_eal_config_attachFunction · 0.85
eal_proc_type_detectFunction · 0.85
eal_proc_type_detectFunction · 0.85
rte_eal_config_createFunction · 0.85
rte_eal_config_attachFunction · 0.85
eal_proc_type_detectFunction · 0.85

Calls 2

snprintfFunction · 0.85
rte_eal_get_runtime_dirFunction · 0.85

Tested by

no test coverage detected