DarwinResourceUsageMBS properties

Online Documentation   -   Statistics   -   FAQ   -   Plugin Parts (All, Dependencies)   -   Class hierarchy

New in Version 22.2 22.3 22.4 22.5 23.0 23.1 23.2 23.3 23.4 23.5 24.0 24.1

The list of the   topics,   classes,   interfaces,   controls,   modules,   global methods by category,   global methods by name,   screenshots,   licenses   and   examples.

Platforms to show: All Mac Windows Linux Cross-Platform

Back to DarwinResourceUsageMBS class.

DarwinResourceUsageMBS.BlockInputOperations as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 4.1 ✅ Yes ❌ No ❌ No ✅ Yes All
Number of block input operations.
Example
dim d as DarwinResourceUsageMBS = GetDarwinResourceUsageMBS
MsgBox str(d.BlockInputOperations)

(Read only property)

Some examples using this property:

DarwinResourceUsageMBS.BlockOutputOperations as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 4.1 ✅ Yes ❌ No ❌ No ✅ Yes All
Number of block output operations.
Example
dim d as DarwinResourceUsageMBS = GetDarwinResourceUsageMBS
MsgBox str(d.BlockOutputOperations)

(Read only property)

Some examples using this property:

DarwinResourceUsageMBS.IntegralMaxResidentSetSize as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 4.1 ✅ Yes ❌ No ❌ No ✅ Yes All
Integral max resident set size.
Example
dim u as DarwinResourceUsageMBS = GetDarwinResourceUsageMBS
dim t as new DarwinTaskInfoMBS

MsgBox "Application Resident Size: "+str(t.ResidentSize)+EndOfLine+_
"Application Virtual Size: "+str(t.VirtualSize)+EndOfLine+_
"Application Integral Max Resident Size: "+str(u.IntegralMaxResidentSetSize)

Maximum memory usage of this app.
(Read only property)

Some examples using this property:

DarwinResourceUsageMBS.IntegralSharedTextMemorySize as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 4.1 ✅ Yes ❌ No ❌ No ✅ Yes All
Integral shared text memory size.
Example
dim d as DarwinResourceUsageMBS = GetDarwinResourceUsageMBS
MsgBox str(d.IntegralSharedTextMemorySize)

(Read only property)

Some examples using this property:

DarwinResourceUsageMBS.IntegralUnsharedDataSize as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 4.1 ✅ Yes ❌ No ❌ No ✅ Yes All
Integral unshared data size.
Example
dim d as DarwinResourceUsageMBS = GetDarwinResourceUsageMBS
MsgBox str(d.IntegralUnsharedDataSize)

(Read only property)

Some examples using this property:

DarwinResourceUsageMBS.IntegralUnsharedStackSize as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 4.1 ✅ Yes ❌ No ❌ No ✅ Yes All
Integral unshared stack size.
Example
dim d as DarwinResourceUsageMBS = GetDarwinResourceUsageMBS
MsgBox str(d.IntegralUnsharedStackSize)

(Read only property)

Some examples using this property:

DarwinResourceUsageMBS.InvoluntaryContextSwitches as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 4.1 ✅ Yes ❌ No ❌ No ✅ Yes All
Number of involuntary context switches.
Example
dim d as DarwinResourceUsageMBS = GetDarwinResourceUsageMBS
MsgBox str(d.InvoluntaryContextSwitches)

(Read only property)

Some examples using this property:

DarwinResourceUsageMBS.MessagesReceived as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 4.1 ✅ Yes ❌ No ❌ No ✅ Yes All
Number of messages received.
Example
dim d as DarwinResourceUsageMBS = GetDarwinResourceUsageMBS
MsgBox str(d.MessagesReceived)

(Read only property)

DarwinResourceUsageMBS.MessagesSent as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 4.1 ✅ Yes ❌ No ❌ No ✅ Yes All
Number of messages sent.
Example
dim d as DarwinResourceUsageMBS = GetDarwinResourceUsageMBS
MsgBox str(d.MessagesSent)

(Read only property)

DarwinResourceUsageMBS.PageFaults as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 4.1 ✅ Yes ❌ No ❌ No ✅ Yes All
Number of page faults.
Example
dim d as DarwinResourceUsageMBS = GetDarwinResourceUsageMBS
MsgBox str(d.PageFaults)

(Read only property)

Some examples using this property:

DarwinResourceUsageMBS.PageReclaims as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 4.1 ✅ Yes ❌ No ❌ No ✅ Yes All
Number of page reclaims.
Example
dim d as DarwinResourceUsageMBS = GetDarwinResourceUsageMBS
MsgBox str(d.PageReclaims)

(Read only property)

Some examples using this property:

DarwinResourceUsageMBS.SignalsReceived as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 4.1 ✅ Yes ❌ No ❌ No ✅ Yes All
Number of signals received.
Example
dim d as DarwinResourceUsageMBS = GetDarwinResourceUsageMBS
MsgBox str(d.SignalsReceived)

(Read only property)

Some examples using this property:

DarwinResourceUsageMBS.Swaps as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 4.1 ✅ Yes ❌ No ❌ No ✅ Yes All
Number of swaps.
Example
dim d as DarwinResourceUsageMBS = GetDarwinResourceUsageMBS
MsgBox str(d.Swaps)

(Read only property)

DarwinResourceUsageMBS.SystemTimeUsed as Double

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 4.1 ✅ Yes ❌ No ❌ No ✅ Yes All
Seconds of system time used.
Example
dim d as DarwinResourceUsageMBS = GetDarwinResourceUsageMBS
MsgBox str(d.SystemTimeUsed)

(Read only property)

Some examples using this property:

DarwinResourceUsageMBS.UserTimeUsed as Double

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 4.1 ✅ Yes ❌ No ❌ No ✅ Yes All
Seconds of user time used.
Example
dim d as DarwinResourceUsageMBS = GetDarwinResourceUsageMBS
MsgBox str(d.UserTimeUsed)

(Read only property)

Some examples using this property:

DarwinResourceUsageMBS.VoluntaryContextSwitches as Int64

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Process MBS MacCF Plugin 4.1 ✅ Yes ❌ No ❌ No ✅ Yes All
Number of voluntary context switches.
Example
dim d as DarwinResourceUsageMBS = GetDarwinResourceUsageMBS
MsgBox str(d.VoluntaryContextSwitches)

(Read only property)

Some examples using this property:

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


💬 Ask a question or report a problem