#![doc = include_str!("../examples/local_rc_sendrecv.rs")]
#![cfg_attr(docsrs, feature(doc_cfg))]
#[cfg(not(target_os = "linux"))]
compile_error!("`rrddmma` currently only supports Linux");
mod utils;
pub mod bindings;
pub mod prelude;
pub mod rdma;
pub mod errors {
pub use super::rdma::cq::CqCreationError;
pub use super::rdma::gid::GidQueryError;
pub use super::rdma::nic::{NicProbeError, PortQueryError};
pub use super::rdma::qp::QpCreationError;
#[cfg(mlnx4)]
pub use super::rdma::dct::DctCreationError;
}
pub mod ctrl;
pub mod mlnx;
pub mod wrap;