NWFSE_GARBAGE_COLLECTION_INFO

Returns information about failed requests. Used by NWGetGarbageCollectionInfo.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo ; 
     nuint16                    reserved ; 
     nuint32                    failedAllocRequestCount ; 
     nuint32                    numOfAllocs ; 
     nuint32                    noMoreMemAvailableCount ; 
     nuint32                    numOfGarbageCollections ; 
     nuint32                    garbageFoundSomeMem ; 
     nuint32                    garbageNumOfChecks ; 
  } NWFSE_GARBAGE_COLLECTION_INFO; 
  

Delphi Structure

  uses calwin32 
   
    NWFSE_GARBAGE_COLLECTION_INFO = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO; 
      reserved : nuint16;
      padding  : nuint16;  
      failedAllocRequestCount : nuint32;  
      numOfAllocs : nuint32;  
      noMoreMemAvailableCount : nuint32;  
      numOfGarbageCollections : nuint32;  
      garbageFoundSomeMem : nuint32;  
      garbageNumOfChecks : nuint32; 
    End;
  

Fields

serverTimeAndVConsoleInfo
Specifies the SERVER_AND_VCONSOLE_INFO structure containing the time since the server was brought up.
reserved
Is reserved (pass zero).
failedAllocRequestCount
Specifies the number of memory allocations that failed since the server was brought up.
numOfAllocs
Specifies the number of memory allocations made since the server was brought up.
noMoreMemAvailableCount
Specifies the number of times that allocation failed because there was no memory available since the server was brought up.
numOfGarbageCollections
Specifies the number of times garbage collection was invoked since the server was brought up.
garbageFoundSomeMem
Specifies the number of times garbage collection reclaimed memory since the server was brought up.
garbageNumOfChecks
Specifies the number of times garbage collection checked for memory since the server was brought up.