Scroll to navigation

rpma_conn_completion_get(3) RPMA Programmer's Manual rpma_conn_completion_get(3)

NAME

rpma_conn_completion_get - receive a completion of an operation (deprecated)

SYNOPSIS


#include <librpma.h>
struct rpma_conn;
struct rpma_completion;
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 from the connection's main CQ one can access directly using rpma_conn_get_cq(3). Please see rpma_cq_get_completion(3) for details.

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:

  • RPMA_E_INVAL - conn or cmpl is NULL
  • Other errors - please see rpma_cq_get_completion(3)

DEPRECATED

See rpma_cq_get_completion(3) for details and restrictions.

SEE ALSO

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

26 January 2022 RPMA