Структура, характеризующая сообщения менеджера ресурсов типа _IO_READ
#include <sys/iofunc.h>struct _io_read {uint16_t type;uint16_t combine_len;int32_t nbytes;uint32_t xtype;uint32_t zero;};typedef union {struct _io_read i;/* unsigned char data[nbytes]; *//* nbytes is returned with MsgReply */} io_read_t;
Данная структура ассоциирована с сообщениями менеджера ресурсов типа _IO_READ
. Поле i определяет входящие данные (поступающие в менеджер ресурсов).
The i member is a structure of type _io_read
that contains the following members:
_IO_READ
. _IO_COMBINE_FLAG
is set in this member. _DTYPE_LSTAT
information. The commented-out declaration for data indicates that nbytes bytes of data immediately follow the io_read_t
structure.
ЗОСРВ «Нейтрино»
resmgr_io_funcs_t, iofunc_read_default(), iofunc_read_verify()
Предыдущий раздел: Описание API системной библиотеки