Specifies memory usage fields the RT Application Loader.
Visual Basic:
Structure NTXPROCATTRIBS Public dwPoolMin As Integer Public dwPoolMax As Integer Public dwVsegSize As Integer Public dwObjDirSize As Integer End Structure
Visual C#:
struct NTXPROCATTRIBS {
  Int32 dwPoolMin;
  Int32 dwPoolMax;
  Int32 dwVsegSize;
  Int32 dwObjDirSize;
}
dwPoolMin 
dwPoolMin value exceeds dwPoolMax, the RT Application Loader exits. 
dwPoolMax 
The maximum amount of memory available for dynamic memory allocation is dwPoolMax minus static memory used for the code, data and stack and RT kernel overhead.
If the dwPoolMax value is less than dwPoolMin, the RT Application Loader exits.
To borrow all available memory, enter -1 (minus 1).
dwVsegSize 
The virtual segment size must be a minimum of 8 Mb. The value of dwVsegSize rounds up to the next 4 Mb boundary. For example, if you enter 5 Mb, the RT Application Loader rounds the value to 8 Mb.
dwObjDirSize 
INtime software's RT kernel allocates 16 bytes per entry.
| Versions | Reference | 
|---|---|
| INtime 3.0 | INtimeDotNet | 
INtimeDotNet system calls, RT Application Loader, ntxCreateRtProcess,