| 1235 | } |
| 1236 | |
| 1237 | rt_err_t rt_channel_send_recv_timeout(int fd, rt_channel_msg_t data, rt_channel_msg_t data_ret, rt_int32_t time) |
| 1238 | { |
| 1239 | return lwp_channel_send_recv_timeout(FDT_TYPE_KERNEL, fd, data, data_ret, time); |
| 1240 | } |
| 1241 | |
| 1242 | rt_err_t rt_channel_send_recv(int fd, rt_channel_msg_t data, rt_channel_msg_t data_ret) |
| 1243 | { |
nothing calls this directly
no test coverage detected