| 34 | |
| 35 | #define RUNTIME_CONFIG_FNAME "config" |
| 36 | static inline const char * |
| 37 | eal_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" |
no test coverage detected