| 1255 | } |
| 1256 | |
| 1257 | rt_err_t rt_channel_recv(int fd, rt_channel_msg_t data) |
| 1258 | { |
| 1259 | return lwp_channel_recv_timeout(FDT_TYPE_KERNEL, fd, data, RT_WAITING_FOREVER); |
| 1260 | } |
| 1261 | |
| 1262 | rt_err_t rt_channel_peek(int fd, rt_channel_msg_t data) |
| 1263 | { |
nothing calls this directly
no test coverage detected