enum rgt_io_mode

Overview

Modes of reading raw log file More…

#include <io.h>

enum rgt_io_mode {
    RGT_IO_MODE_BLK,
    RGT_IO_MODE_NBLK,
};

Detailed Documentation

Modes of reading raw log file

Enum Values

RGT_IO_MODE_BLK

Blocking mode. Read operation in this mode blocks caller until all bytes read

RGT_IO_MODE_NBLK

Nonblocking mode. If number of bytes caller wants to read less than actually available in file, it reads only them without waiting for more data.