Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than kernel32, prefix the name with the module name and a period.
JOBOBJECT_EXTENDED_LIMIT_INFORMATION (kernel32)
.
C# Signature:
[StructLayout(LayoutKind.Sequential)]
struct JOBOBJECT_EXTENDED_LIMIT_INFORMATION
{
public JOBOBJECT_BASIC_LIMIT_INFORMATION BasicLimitInformation;
public IO_COUNTERS IoInfo;
public UIntPtr ProcessMemoryLimit;
public UIntPtr JobMemoryLimit;
public UIntPtr PeakProcessMemoryUsed;
public UIntPtr PeakJobMemoryUsed;
public UInt32 ProcessMemoryLimit;
public UInt32 JobMemoryLimit;
public UInt32 PeakProcessMemoryUsed;
public UInt32 PeakJobMemoryUsed;
}
VB Signature:
<StructLayout(LayoutKind.Sequential)> _
Structure JOBOBJECT_EXTENDED_LIMIT_INFORMATION
Public BasicLimitInformation As JOBOBJECT_BASIC_LIMIT_INFORMATION
Public IoInfo As IO_COUNTERS
Public ProcessMemoryLimit As UIntPtr
Public JobMemoryLimit As UIntPtr
Public PeakProcessMemoryUsed As UIntPtr
Public PeakJobMemoryUsed As UIntPtr
Public ProcessMemoryLimit As UInt32
Public JobMemoryLimit As UInt32
Public PeakProcessMemoryUsed As UInt32
Public PeakJobMemoryUsed As UInt32
End Structure
Contains basic limit information for a job object.
11/29/2013 6:02:30 AM - prikryl-109.80.225.166
TODO - a short description
12/30/2011 2:26:54 PM - anonymous
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).