| 132 | } |
| 133 | |
| 134 | static void |
| 135 | create_socket_path(const char *name, char *buf, int len) |
| 136 | { |
| 137 | const char *prefix = eal_mp_socket_path(); |
| 138 | |
| 139 | if (strlen(name) > 0) |
| 140 | snprintf(buf, len, "%s_%s", prefix, name); |
| 141 | else |
| 142 | strlcpy(buf, prefix, len); |
| 143 | } |
| 144 | |
| 145 | int |
| 146 | rte_eal_primary_proc_alive(const char *config_file_path) |
no test coverage detected