| 1184 | } |
| 1185 | |
| 1186 | rt_err_t lwp_channel_send_recv_timeout(int fdt_type, int fd, rt_channel_msg_t data, rt_channel_msg_t data_ret, rt_int32_t time) |
| 1187 | { |
| 1188 | rt_channel_t ch; |
| 1189 | |
| 1190 | ch = fd_2_channel(fdt_type, fd); |
| 1191 | if (ch) |
| 1192 | { |
| 1193 | return rt_raw_channel_send_recv_timeout(ch, data, data_ret, time); |
| 1194 | } |
| 1195 | return -RT_EIO; |
| 1196 | } |
| 1197 | |
| 1198 | rt_err_t lwp_channel_reply(int fdt_type, int fd, rt_channel_msg_t data) |
| 1199 | { |
no test coverage detected