globus_xio_ordering_driver_cntls - Online Linux Manual PageSection : 3
Updated : Tue Jan 26 2021
Source : Version 6.4
Note : globus_xio

NAMEglobus_xio_ordering_driver_cntls − Attributes and Cntls
 − Attributes and Cntls​.

SYNOPSIS

Enumerationsenum globus_xio_ordering_cmd_t { GLOBUS_XIO_ORDERING_SET_OFFSET, GLOBUS_XIO_ORDERING_SET_MAX_READ_COUNT, GLOBUS_XIO_ORDERING_GET_MAX_READ_COUNT, GLOBUS_XIO_ORDERING_SET_BUFFERING, GLOBUS_XIO_ORDERING_GET_BUFFERING, GLOBUS_XIO_ORDERING_SET_BUF_SIZE, GLOBUS_XIO_ORDERING_GET_BUF_SIZE, GLOBUS_XIO_ORDERING_SET_MAX_BUF_COUNT, GLOBUS_XIO_ORDERING_GET_MAX_BUF_COUNT }

Functionsglobus_result_t globus_xio_handle_cntl (handle, driver, GLOBUS_XIO_ORDERING_SET_OFFSET, globus_off_t offset)
globus_result_t globus_xio_attr_cntl (attr, driver, GLOBUS_XIO_ORDERING_SET_MAX_READ_COUNT, int max_read_count)
globus_result_t globus_xio_attr_cntl (attr, driver, GLOBUS_XIO_ORDERING_GET_MAX_READ_COUNT, int *max_read_count_out)
globus_result_t globus_xio_attr_cntl (attr, driver, GLOBUS_XIO_ORDERING_SET_BUFFERING, globus_bool_t buffering)
globus_result_t globus_xio_attr_cntl (attr, driver, GLOBUS_XIO_ORDERING_GET_BUFFERING, globus_bool_t *buffering_out)
globus_result_t globus_xio_attr_cntl (attr, driver, GLOBUS_XIO_ORDERING_SET_BUF_SIZE, int buf_size)
globus_result_t globus_xio_attr_cntl (attr, driver, GLOBUS_XIO_ORDERING_GET_BUF_SIZE, int *buf_size_out)
globus_result_t globus_xio_attr_cntl (attr, driver, GLOBUS_XIO_ORDERING_SET_MAX_BUF_COUNT, int max_buf_count)
globus_result_t globus_xio_attr_cntl (attr, driver, GLOBUS_XIO_ORDERING_GET_MAX_BUF_COUNT, int *max_buf_count_out)

Detailed DescriptionAttributes and Cntls​. Ordering driver specific attrs and cntls​. See also globus_xio_attr_cntl() globus_xio_handle_cntl()

Enumeration Type Documentation

enum globus_xio_ordering_cmd_tORDERING driver specific cntls Enumerator GLOBUS_XIO_ORDERING_SET_OFFSET  See usage for: globus_xio_handle_cntl GLOBUS_XIO_ORDERING_SET_MAX_READ_COUNT  See usage for: globus_xio_attr_cntl GLOBUS_XIO_ORDERING_GET_MAX_READ_COUNT  See usage for: globus_xio_attr_cntl GLOBUS_XIO_ORDERING_SET_BUFFERING  See usage for: globus_xio_attr_cntl GLOBUS_XIO_ORDERING_GET_BUFFERING  See usage for: globus_xio_attr_cntl GLOBUS_XIO_ORDERING_SET_BUF_SIZE  See usage for: globus_xio_attr_cntl GLOBUS_XIO_ORDERING_GET_BUF_SIZE  See usage for: globus_xio_attr_cntl GLOBUS_XIO_ORDERING_SET_MAX_BUF_COUNT  See usage for: globus_xio_attr_cntl GLOBUS_XIO_ORDERING_GET_MAX_BUF_COUNT  See usage for: globus_xio_attr_cntl

Function Documentation

globus_result_t globus_xio_attr_cntl (attr, driver, GLOBUS_XIO_ORDERING_GET_BUF_SIZE, int * buf_size_out)This is an overloaded member function, provided for convenience​. It differs from the above function only in what argument(s) it accepts​. Get the size of the buffer used for the internal reads​. Parameters buf_size_out The buffer size will be stored in here​.

globus_result_t globus_xio_attr_cntl (attr, driver, GLOBUS_XIO_ORDERING_GET_BUFFERING, globus_bool_t * buffering_out)This is an overloaded member function, provided for convenience​. It differs from the above function only in what argument(s) it accepts​. Get the buffering flag on the attr​. Parameters buffering_out Buffering flag will be stored in here​.

globus_result_t globus_xio_attr_cntl (attr, driver, GLOBUS_XIO_ORDERING_GET_MAX_BUF_COUNT, int * max_buf_count_out)This is an overloaded member function, provided for convenience​. It differs from the above function only in what argument(s) it accepts​. Get the maximum buffer count set on the attr​. Parameters max_buf_count_out The maximun buffer count will be stored in here​.

globus_result_t globus_xio_attr_cntl (attr, driver, GLOBUS_XIO_ORDERING_GET_MAX_READ_COUNT, int * max_read_count_out)This is an overloaded member function, provided for convenience​. It differs from the above function only in what argument(s) it accepts​. Get the maximum number of parallel reads set on the attr​. Parameters max_read_count_out The maximum number of parallel reads allowed will be stored here​.

globus_result_t globus_xio_attr_cntl (attr, driver, GLOBUS_XIO_ORDERING_SET_BUF_SIZE, int buf_size)This is an overloaded member function, provided for convenience​. It differs from the above function only in what argument(s) it accepts​. Set the size of the buffer that ordering driver creates to use for reading data from the driver below it​. Parameters buf_size Specifies the buffer size for internal reads (default is 100 KB)​.

globus_result_t globus_xio_attr_cntl (attr, driver, GLOBUS_XIO_ORDERING_SET_BUFFERING, globus_bool_t buffering)This is an overloaded member function, provided for convenience​. It differs from the above function only in what argument(s) it accepts​. This driver can be used in 2 modes; ordering (care about offsets of the data read - underlying transport driver may deliver data out of order - this driver will rearrange data based on the offset and deliver inorder to user) and buffering (do not care about offsets - just buffer the data read abd deliver it when requested)​. This attribute control can be used to enable buffering​. Parameters buffering GLOBUS_TRUE to enable buffering, GLOBUS_FALSE (default) to disable buffering​.

globus_result_t globus_xio_attr_cntl (attr, driver, GLOBUS_XIO_ORDERING_SET_MAX_BUF_COUNT, int max_buf_count)This is an overloaded member function, provided for convenience​. It differs from the above function only in what argument(s) it accepts​. Set the maximum number of buffers that this driver can create for reading data from the driver below it​. Parameters max_buf_count Specifies the max buffer count for internal reads (default is 100)​.

globus_result_t globus_xio_attr_cntl (attr, driver, GLOBUS_XIO_ORDERING_SET_MAX_READ_COUNT, int max_read_count)This is an overloaded member function, provided for convenience​. It differs from the above function only in what argument(s) it accepts​. Set the maximum number of reads that ordering driver can have outstanding on driver(s) below​. Parameters max_read_count Specifies the maximum number of parallel reads (default is 1)​.

globus_result_t globus_xio_handle_cntl (handle, driver, GLOBUS_XIO_ORDERING_SET_OFFSET, globus_off_t offset)This is an overloaded member function, provided for convenience​. It differs from the above function only in what argument(s) it accepts​. Set offset for the next IO operation​. This is not allowed when there is an outstanding IO operation​. This operation clears all the buffered data​. Parameters offset Specifies the offset to use in the next IO operation​.

AuthorGenerated automatically by Doxygen for globus_xio from the source code​.
0
Johanes Gumabo
Data Size   :   28,369 byte
man-GLOBUS_XIO_ORDERING_GET_BUF_SIZE.3Build   :   2024-12-05, 20:55   :  
Visitor Screen   :   x
Visitor Counter ( page / site )   :   3 / 168,711
Visitor ID   :     :  
Visitor IP   :   13.59.83.202   :  
Visitor Provider   :   AMAZON-02   :  
Provider Position ( lat x lon )   :   39.962500 x -83.006100   :   x
Provider Accuracy Radius ( km )   :   1000   :  
Provider City   :   Columbus   :  
Provider Province   :   Ohio ,   :   ,
Provider Country   :   United States   :  
Provider Continent   :   North America   :  
Visitor Recorder   :   Version   :  
Visitor Recorder   :   Library   :  
Online Linux Manual Page   :   Version   :   Online Linux Manual Page - Fedora.40 - march=x86-64 - mtune=generic - 24.12.05
Online Linux Manual Page   :   Library   :   lib_c - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40
Online Linux Manual Page   :   Library   :   lib_m - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40
Data Base   :   Version   :   Online Linux Manual Page Database - 24.04.13 - march=x86-64 - mtune=generic - fedora-38
Data Base   :   Library   :   lib_c - 23.02.07 - march=x86-64 - mtune=generic - fedora.36

Very long time ago, I have the best tutor, Wenzel Svojanovsky . If someone knows the email address of Wenzel Svojanovsky , please send an email to johanes_gumabo@yahoo.co.id .
If error, please print screen and send to johanes_gumabo@yahoo.co.id
Under development. Support me via PayPal.