Platforms to show: All Mac Windows Linux Cross-Platform

Back to DarwinVMStatisticsMBS class.

DarwinVMStatisticsMBS.ActivePages as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 2.6 ✅ Yes ❌ No ❌ No ✅ Yes All
The total number of pages currently in use and pageable.
Example
dim d as DarwinVMStatisticsMBS = GetDarwinVMStatisticsMBS
MsgBox str(d.ActivePages)

(Read only property)

Some examples using this property:

DarwinVMStatisticsMBS.CowFaults as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 2.6 ✅ Yes ❌ No ❌ No ✅ Yes All
The number of faults that caused a page to be copied (generally caused by copy-on-write faults).
Example
dim d as DarwinVMStatisticsMBS = GetDarwinVMStatisticsMBS
MsgBox str(d.CowFaults)

(Read only property)

DarwinVMStatisticsMBS.CPUTicksIdle as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 2.7 ✅ Yes ❌ No ❌ No ✅ Yes All
The number of time slices used by the Idle process.
Example
dim d as DarwinVMStatisticsMBS = GetDarwinVMStatisticsMBS
MsgBox str(d.CPUTicksIdle)

Calculate deltas like in the example to see usage of CPU time.
(Read only property)

Some examples using this property:

DarwinVMStatisticsMBS.CPUTicksNice as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 2.7 ✅ Yes ❌ No ❌ No ✅ Yes All
The number of time slices used by the task switcher process.
Example
dim d as DarwinVMStatisticsMBS = GetDarwinVMStatisticsMBS
MsgBox str(d.CPUTicksNice)

Calculate deltas like in the example to see usage of CPU time.
(Read only property)

Some examples using this property:

DarwinVMStatisticsMBS.CPUTicksSystem as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 2.7 ✅ Yes ❌ No ❌ No ✅ Yes All
The number of time slices used by the system processes.
Example
dim d as DarwinVMStatisticsMBS = GetDarwinVMStatisticsMBS
MsgBox str(d.CPUTicksSystem)

Calculate deltas like in the example to see usage of CPU time.
(Read only property)

Some examples using this property:

DarwinVMStatisticsMBS.CPUTicksUser as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 2.7 ✅ Yes ❌ No ❌ No ✅ Yes All
The number of time slices used by the user application processes.
Example
dim d as DarwinVMStatisticsMBS = GetDarwinVMStatisticsMBS
MsgBox str(d.CPUTicksUser)

Calculate deltas like in the example to see usage of CPU time.
(Read only property)

Some examples using this property:

DarwinVMStatisticsMBS.Faults as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 2.6 ✅ Yes ❌ No ❌ No ✅ Yes All
The number of times the "vm_fault" routine has been called.
Example
dim d as DarwinVMStatisticsMBS = GetDarwinVMStatisticsMBS
MsgBox str(d.Faults)

(Read only property)

DarwinVMStatisticsMBS.FreePages as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 2.6 ✅ Yes ❌ No ❌ No ✅ Yes All
The total number of free pages in the system.
Example
dim d as DarwinVMStatisticsMBS = GetDarwinVMStatisticsMBS
MsgBox str(d.FreePages)

(Read only property)

Some examples using this property:

DarwinVMStatisticsMBS.Hits as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 2.6 ✅ Yes ❌ No ❌ No ✅ Yes All
The hit count.
Example
dim d as DarwinVMStatisticsMBS = GetDarwinVMStatisticsMBS
MsgBox str(d.Hits)

(Read only property)

DarwinVMStatisticsMBS.InactivePages as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 2.6 ✅ Yes ❌ No ❌ No ✅ Yes All
The total number of pages on the inactive list.
Example
dim d as DarwinVMStatisticsMBS = GetDarwinVMStatisticsMBS
MsgBox str(d.InactivePages)

(Read only property)

Some examples using this property:

DarwinVMStatisticsMBS.Lookups as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 2.6 ✅ Yes ❌ No ❌ No ✅ Yes All
The count of lookups.
Example
dim d as DarwinVMStatisticsMBS = GetDarwinVMStatisticsMBS
MsgBox str(d.Lookups)

(Read only property)

Some examples using this property:

DarwinVMStatisticsMBS.PageIns as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 2.6 ✅ Yes ❌ No ❌ No ✅ Yes All
The number of requests for pages from a pager (such as the inode pager).
Example
dim d as DarwinVMStatisticsMBS = GetDarwinVMStatisticsMBS
MsgBox str(d.pageins)

(Read only property)

DarwinVMStatisticsMBS.PageOuts as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 2.6 ✅ Yes ❌ No ❌ No ✅ Yes All
The number of pages that have been paged out.
Example
dim d as DarwinVMStatisticsMBS = GetDarwinVMStatisticsMBS
MsgBox str(d.PageOuts)

(Read only property)

Some examples using this property:

DarwinVMStatisticsMBS.Pagesize as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 2.6 ✅ Yes ❌ No ❌ No ✅ Yes All
The size of one memory page in memory.
Example
dim d as DarwinVMStatisticsMBS = GetDarwinVMStatisticsMBS
MsgBox str(d.Pagesize)

On PowerPC CPUs, it should be 4096 Bytes.
(Read only property)

DarwinVMStatisticsMBS.Reactivations as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 2.6 ✅ Yes ❌ No ❌ No ✅ Yes All
the total number of pages that have been moved from the inactive list to the active list (reactivated).
Example
dim d as DarwinVMStatisticsMBS = GetDarwinVMStatisticsMBS
MsgBox str(d.Reactivations)

(Read only property)

Some examples using this property:

DarwinVMStatisticsMBS.WiredPages as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 2.6 ✅ Yes ❌ No ❌ No ✅ Yes All
The total number of pages wired down. That is, pages that cannot be paged out.
Example
dim d as DarwinVMStatisticsMBS = GetDarwinVMStatisticsMBS
MsgBox str(d.WiredPages)

(Read only property)

Some examples using this property:

DarwinVMStatisticsMBS.ZeroFillPages as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 2.6 ✅ Yes ❌ No ❌ No ✅ Yes All
The total number of pages that have been zero-filled on demand.
Example
dim d as DarwinVMStatisticsMBS = GetDarwinVMStatisticsMBS
MsgBox str(d.ZeroFillPages)

(Read only property)

Some examples using this property:

The items on this page are in the following plugins: MBS MacCF Plugin.


The biggest plugin in space...