|
ADC Home > Reference Library > Reference > Hardware & Drivers > I/O Kit Framework Reference
|
IODataQueueShared.h |
| Include Path: | <IOKit/IODataQueueShared.h> |
| Path: | /System/Library/Frameworks/IOKit.framework/Versions/A/Headers/IODataQueueShared.h |
| Includes: |
<libkern/OSTypes.h> <mach/port.h> <mach/message.h> |
This header contains data types and definitions common to both clients and providers of an I/O Kit data queue. These queues are typically used to allow a device driver or family to communicate a continuous stream of data to a client, such as might be required for an audio device serial port driver.
IODataQueueAppendix |
A struct mapping to the appendix region of a data queue.
typedef struct _IODataQueueAppendix { UInt32 version; mach_msg_header_t msgh; } IODataQueueAppendix;
versionThe version of the queue appendix.
portThe notification port associated with this queue.
This struct is variable sized dependent on the version. The struct represents the data queue appendix information.
IODataQueueEntry |
Represents an entry within the data queue
typedef struct _IODataQueueEntry{ UInt32 size; UInt8 data[4]; } IODataQueueEntry;
sizeThe size of the following data region.
dataRepresents the beginning of the data region. The address of the data field is a pointer to the start of the data region.
This is a variable sized struct. The data field simply represents the start of the data region. The size of the data region is stored in the size field. The whole size of the specific entry is the size of a UInt32 plus the size of the data region.
IODataQueueMemory |
A struct mapping to the header region of a data queue.
typedef struct _IODataQueueMemory { UInt32 queueSize; volatile UInt32 head; volatile UInt32 tail; IODataQueueEntry queue[1]; } IODataQueueMemory;
queueSizeThe size of the queue region pointed to by the queue field.
headThe location of the queue head. This field is represented as a byte offset from the beginning of the queue memory region.
tailThe location of the queue tail. This field is represented as a byte offset from the beginning of the queue memory region.
queueRepresents the beginning of the queue memory region. The size of the region pointed to by queue is stored in the queueSize field.
This struct is variable sized. The struct represents the data queue header information plus a pointer to the actual data queue itself. The size of the struct is the combined size of the header fields (3 * sizeof(UInt32)) plus the actual size of the queue region. This size is stored in the queueSize field.
DATA_QUEUE_ENTRY_HEADER_SIZE |
#define DATA_QUEUE_ENTRY_HEADER_SIZE
DATA_QUEUE_MEMORY_APPENDIX_SIZE |
#define DATA_QUEUE_MEMORY_APPENDIX_SIZE
DATA_QUEUE_MEMORY_HEADER_SIZE |
#define DATA_QUEUE_MEMORY_HEADER_SIZE
|
Last Updated: 2009-02-23