SMCIOC_INIT_ELEM_STAT
This IOCTL command instructs the medium changer robotic device to issue the SCSI Initialize Element Status command.
There is no associated data structure.
An example of the SMCIOC_INIT_ELEM_STAT command
is
#include <sys/Atape.h>
if (!ioctl (smcfd, SMCIOC_INIT_ELEM_STAT, NULL))
printf ("The SMCIOC_INIT_ELEM_STAT ioctl succeeded\n");
else
{
perror ("The SMCIOC_INIT_ELEM_STAT ioctl failed");
smcioc_request_sense();
}