| 1240 | } |
| 1241 | |
| 1242 | rt_err_t rt_channel_send_recv(int fd, rt_channel_msg_t data, rt_channel_msg_t data_ret) |
| 1243 | { |
| 1244 | return lwp_channel_send_recv_timeout(FDT_TYPE_KERNEL, fd, data, data_ret, RT_WAITING_FOREVER); |
| 1245 | } |
| 1246 | |
| 1247 | rt_err_t rt_channel_reply(int fd, rt_channel_msg_t data) |
| 1248 | { |
nothing calls this directly
no test coverage detected