| 577 | } |
| 578 | |
| 579 | static void socket_free(struct sal_socket_table *st, int idx) |
| 580 | { |
| 581 | struct sal_socket *sock; |
| 582 | |
| 583 | sock = st->sockets[idx]; |
| 584 | st->sockets[idx] = RT_NULL; |
| 585 | rt_free(sock); |
| 586 | } |
| 587 | |
| 588 | static int socket_new(void) |
| 589 | { |
no test coverage detected