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
|
.\" Automatically generated by Pandoc 2.9.2.1
.\"
.TH "fi_version" "3" "2022\-12\-09" "Libfabric Programmer\[cq]s Manual" "#VERSION#"
.hy
.SH NAME
.PP
fi_version - Version of the library interfaces
.SH SYNOPSIS
.IP
.nf
\f[C]
#include <rdma/fabric.h>
uint32_t fi_version(void);
FI_MAJOR(version)
FI_MINOR(version)
\f[R]
.fi
.SH DESCRIPTION
.PP
This call returns the current version of the library interfaces.
The version includes major and minor numbers.
These may be extracted from the returned value using the FI_MAJOR() and
FI_MINOR() macros.
.SH NOTES
.PP
The library may support older versions of the interfaces.
.SH RETURN VALUE
.PP
Returns the current library version.
The upper 16-bits of the version correspond to the major number, and the
lower 16-bits correspond with the minor number.
.SH SEE ALSO
.PP
\f[C]fabric\f[R](7), \f[C]fi_getinfo\f[R](3)
.SH AUTHORS
OpenFabrics.
|