PMDK man page

librpma

NAME

rpma_conn_completion_get - receive a completion of an operation

SYNOPSIS

      #include <librpma.h>

      struct rpma_conn;
      struct rpma_completion;
      enum rpma_op {
              RPMA_OP_READ,
              RPMA_OP_WRITE,
              RPMA_OP_FLUSH,
              RPMA_OP_SEND,
              RPMA_OP_RECV,
      };

      int rpma_conn_completion_get(struct rpma_conn *conn,
                      struct rpma_completion *cmpl);

DESCRIPTION

rpma_conn_completion_get() receives the next available completion of an already posted operation. All operations generate completion on error. The operations posted with the **RPMA_F_COMPLETION_ALWAYS** flag also generate a completion on success. The following operations are available:

RETURN VALUE

The rpma_conn_completion_get() function returns 0 on success or a negative error code on failure.

ERRORS

rpma_conn_completion_get() can fail with the following errors:

SEE ALSO

rpma_conn_get_completion_fd(3), rpma_conn_completion_wait(3), rpma_conn_req_connect(3), rpma_flush(3), rpma_read(3), rpma_recv(3), rpma_send(3), rpma_write(3), rpma_write_atomic(3), librpma(7) and https://pmem.io/rpma/