| 593 | } |
| 594 | |
| 595 | static void |
| 596 | close_socket_fd(int fd) |
| 597 | { |
| 598 | char path[PATH_MAX]; |
| 599 | |
| 600 | close(fd); |
| 601 | create_socket_path(peer_name, path, sizeof(path)); |
| 602 | unlink(path); |
| 603 | } |
| 604 | |
| 605 | int |
| 606 | rte_mp_channel_init(void) |
no test coverage detected