1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
.\" Automatically generated by Pandoc 2.9.2.1
.\"
.TH "IBV_EVENT_TYPE_STR" "3" "2006-10-31" "libibverbs" "Libibverbs Programmer\[cq]s Manual"
.hy
.SH NAME
.PP
ibv_event_type_str - Return string describing event_type enum value
.PP
ibv_node_type_str - Return string describing node_type enum value
.PP
ibv_port_state_str - Return string describing port_state enum value
.SH SYNOPSIS
.IP
.nf
\f[C]
#include <infiniband/verbs.h>
const char *ibv_event_type_str(enum ibv_event_type event_type);
const char *ibv_node_type_str(enum ibv_node_type node_type);
const char *ibv_port_state_str(enum ibv_port_state port_state);
\f[R]
.fi
.SH DESCRIPTION
.PP
\f[B]ibv_node_type_str()\f[R] returns a string describing the node type
enum value \f[I]node_type\f[R].
.PP
\f[B]ibv_port_state_str()\f[R] returns a string describing the port
state enum value \f[I]port_state\f[R].
.PP
\f[B]ibv_event_type_str()\f[R] returns a string describing the event
type enum value \f[I]event_type\f[R].
.SH RETURN VALUE
.PP
These functions return a constant string that describes the enum value
passed as their argument.
.SH AUTHOR
.PP
Roland Dreier <rolandd@cisco.com>
|