1# zx_channel_call_noretry 2 3## NAME 4 5<!-- Updated by update-docs-from-abigen, do not edit. --> 6 7channel_call_noretry - TODO(ZX-3106) 8 9## SYNOPSIS 10 11<!-- Updated by update-docs-from-abigen, do not edit. --> 12 13``` 14#include <zircon/syscalls.h> 15 16zx_status_t zx_channel_call_noretry(zx_handle_t handle, 17 uint32_t options, 18 zx_time_t deadline, 19 const zx_channel_call_args_t* args, 20 uint32_t* actual_bytes, 21 uint32_t* actual_handles); 22``` 23 24## DESCRIPTION 25 26TODO(ZX-3106) 27 28## RIGHTS 29 30<!-- Updated by update-docs-from-abigen, do not edit. --> 31 32*handle* must be of type **ZX_OBJ_TYPE_CHANNEL** and have **ZX_RIGHT_READ** and have **ZX_RIGHT_WRITE**. 33 34All wr_handles of *args* must have **ZX_RIGHT_TRANSFER**. 35 36## RETURN VALUE 37 38TODO(ZX-3106) 39 40## ERRORS 41 42TODO(ZX-3106) 43 44## SEE ALSO 45 46 47TODO(ZX-3106) 48