rdmacreateeventchannel
rdma_create_event_channel is a function in the RDMA Connection Manager (RDMA CM) API used to create an event channel for receiving asynchronous RDMA CM events in user space. It returns a pointer to a structure representing the event channel, or NULL if the creation fails.
An event channel serves as the conduit through which an application receives notifications about RDMA CM state
Usage pattern typically involves creating the event channel, creating a RDMA ID tied to that channel, initiating
Notes and considerations include that the event channel may be monitored using poll or select on its
See also: rdma_create_id, rdma_resolve_addr, rdma_resolve_route, rdma_get_cm_event, rdma_ack_cm_event, rdma_destroy_event_channel.