| 1208 | } |
| 1209 | |
| 1210 | rt_err_t lwp_channel_recv_timeout(int fdt_type, int fd, rt_channel_msg_t data, rt_int32_t time) |
| 1211 | { |
| 1212 | rt_channel_t ch; |
| 1213 | |
| 1214 | ch = fd_2_channel(fdt_type, fd); |
| 1215 | if (ch) |
| 1216 | { |
| 1217 | return rt_raw_channel_recv_timeout(ch, data, time); |
| 1218 | } |
| 1219 | return -RT_EIO; |
| 1220 | } |
| 1221 | |
| 1222 | int rt_channel_open(const char *name, int flags) |
| 1223 | { |
no test coverage detected