| 1172 | } |
| 1173 | |
| 1174 | rt_err_t lwp_channel_send(int fdt_type, int fd, rt_channel_msg_t data) |
| 1175 | { |
| 1176 | rt_channel_t ch; |
| 1177 | |
| 1178 | ch = fd_2_channel(fdt_type, fd); |
| 1179 | if (ch) |
| 1180 | { |
| 1181 | return rt_raw_channel_send(ch, data); |
| 1182 | } |
| 1183 | return -RT_EIO; |
| 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 | { |
no test coverage detected