1io_uring_check_version(3)       liburing Manual      io_uring_check_version(3)
2
3
4

NAME

6       io_uring_check_version  -  functions  and  macros to check the liburing
7       version
8

SYNOPSIS

10       #include <liburing.h>
11
12       bool io_uring_check_version(int major, int minor);
13       IO_URING_CHECK_VERSION(major, minor);
14
15       int io_uring_major_version(void);
16       IO_URING_VERSION_MAJOR;
17
18       int io_uring_minor_version(void);
19       IO_URING_VERSION_MINOR;
20

DESCRIPTION

22       The io_uring_check_version(3) function returns true if the liburing li‐
23       brary  loaded by the dynamic linker is greater-than or equal-to the ma‐
24       jor and minor numbers provided.
25
26
27       The IO_URING_CHECK_VERSION(3) macro returns 1 if the  liburing  library
28       being  compiled against is greater-than or equal-to the major and minor
29       numbers provided.
30
31
32       The io_uring_major_version(3) function returns the major version number
33       of the liburing library loaded by the dynamic linker.
34
35
36       The IO_URING_VERSION_MAJOR(3) macro returns the major version number of
37       the liburing library being compiled against.
38
39
40       The io_uring_minor_version(3) function returns the minor version number
41       of the liburing library loaded by the dynamic linker.
42
43
44       The IO_URING_VERSION_MINOR(3) macro returns the minor version number of
45       the liburing library being compiled against.
46
47
48
49
50liburing-2.4                   December 1, 2022      io_uring_check_version(3)
Impressum