Priority-ordering algorithm flag.
A set of flags that indicate which priority-ordering algorithm to use when
placing elements in the queue, and whether or not to convert to 32-bit addresses
the addresses of elements that are placed in the queue by 16-bit processes.
Possible values are a combination of the values of the following two flags:
Priority-algorithm flag
QUE_FIFO (0x00000000)
QUE_LIFO
(0x00000001)
QUE_PRIORITY
(0x00000002)
Priority queue: the requesting process
specifies priority 0 to 15, with 15 being the highest priority.
Address-conversion
flag
QUE_NOCONVERT_ADDRESS (0x00000000)
The data addresses
of elements placed in the queue by 16-bit processes are not converted.
QUE_CONVERT_ADDRESS
(0x00000004)
The data addresses of elements placed
in the queue by 16-bit processes are converted to 32-bit data addresses.
[Back]
[Next]