Platform SDK: DLLs, Processes, and Threads

JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION

The JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION structure contains basic accounting and I/O accounting information for a job object.

typedef struct JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION {
    JOBOBJECT_BASIC_ACCOUNTING_INFORMATION BasicInfo;
    IO_COUNTERS IoInfo;
} JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION, *PJOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION;

Members

BasicInfo
A JOBOBJECT_BASIC_ACCOUNTING_INFORMATION structure that specifies the basic accounting information for the job.
IoInfo
An IO_COUNTERS structure that specifies the I/O accounting information for the job. The structure includes information for all processes that have ever been associated with the job, in addition to the information for all processes currently associated with the job.

Requirements

  Windows NT/2000: Requires Windows 2000.
  Windows 95/98: Unsupported.
  Header: Declared in Winnt.h; include Windows.h.

See Also

Processes and Threads Overview, Process and Thread Structures, IO_COUNTERS, JOBOBJECT_BASIC_ACCOUNTING_INFORMATION, QueryInformationJobObject