 |
Index for Section 9 |
|
 |
Alphabetical listing for V |
|
 |
Bottom of page |
|
v1_devtype_info_t(9s)
NAME
v1_devtype_info_t - General: Stores device-type information for the
DEVGETINFO ioctl command
SYNOPSIS
typedef union v1_devtype_info {
v1_disk_dev_info_t disk;
v1_tape_dev_info_t tape;
uchar_t devdata[DEV_TYPE_LEN];
} v1_devtype_info_t;
MEMBERS
disk
Specifies a structure that contains disk status information.
tape
Specifies a structure that contains tape status information.
devdata
Specifies an array of 256 bytes of data. This array is used for
returning device-specific information for which no structure is
defined.
DESCRIPTION
The v1_devtype_info_t union contains device-specific information returned
by the DEVGETINFO ioctl command. It is a member of the device_info_t union,
the top-level definition of the information returned to the user data
buffer. The type of information in the v1_devtype_info_t union depends on
the device type -- disk, tape, or some other type of device for which no
device-specific structure has been defined.
FILES
<io/common/devgetinfo.h>
SEE ALSO
Data Structures: device_info_t(9s), v1_disk_dev_info_t(9s),
v1_tape_dev_info_t(9s)
 |
Index for Section 9 |
|
 |
Alphabetical listing for V |
|
 |
Top of page |
|