MCPcopy Create free account
hub / github.com/NVIDIA/stdexec / __io_uring_setup

Function __io_uring_setup

include/exec/linux/io_uring_context.hpp:71–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

69 }
70
71 inline auto
72 __io_uring_setup(unsigned __entries, ::io_uring_params& __params) -> safe_file_descriptor
73 {
74 int rc = static_cast<int>(::syscall(__NR_io_uring_setup, __entries, &__params));
75 __throw_error_code_if(rc < 0, -rc);
76 return safe_file_descriptor{rc};
77 }
78
79 inline auto __io_uring_enter(int __ring_fd,
80 unsigned int __to_submit,

Callers 1

__context_baseMethod · 0.85

Calls 1

__throw_error_code_ifFunction · 0.85

Tested by

no test coverage detected