| 1250 | } |
| 1251 | |
| 1252 | rt_err_t rt_channel_recv_timeout(int fd, rt_channel_msg_t data, rt_int32_t time) |
| 1253 | { |
| 1254 | return lwp_channel_recv_timeout(FDT_TYPE_KERNEL, fd, data, time); |
| 1255 | } |
| 1256 | |
| 1257 | rt_err_t rt_channel_recv(int fd, rt_channel_msg_t data) |
| 1258 | { |
nothing calls this directly
no test coverage detected