Removes the registration of an I/O statistics structure used for maintaining I/O statistics on a particular device.
#include <sys/types.h> #include <sys/errno.h> #include <sys/iostat.h>
void iostdel (devstatp) union { struct ttystat *ttystp; struct dkstat *dkstp; } devstatp;
devstatp | Points to an I/O statistics structure previously registered using the iostadd kernel service. |
The iostdel kernel service removes the registration of an I/O statistics structure for a device being terminated. The device's ttystat or dkstat structure should have previously been registered using the iostadd kernel service. Following a return from the iostdel service, the iostat command will no longer display statistics for the device being terminated.
The iostdel kernel service can be called from the process environment only.
The iostdel service has no return values.
The iostdel kernel service is part of Base Operating System (BOS) Runtime.
The iostat command.
The iostadd kernel service.
Kernel Extension and Device Driver Management Kernel Services in AIX Kernel Extensions and Device Support Programming Concepts.