!rtobject

Displays information about one or more RTSS objects, including type, name, address, and reference count.

Syntax

!rtobject [-t<object>]

Parameters

-t [optional]

Optional flag -t followed by a string that specifies the type of object for which you want to find information. The object address can be obtained with the !rthandle command or the !rtobject command itself. Note that there is no space between the -t flag and the specified name.

For a list of possible object strings, see Supported Object Strings.

Remarks

If you specify both an object type (name) and object address (object), object type is ignored if the type provided is incorrect.

With no parameters, !rtobject displays information for all RTSS objects.

For a glossary of common terms found in command output, see RTX64 WinDbg Extension Commands Glossary.

This command is supported for:

Examples

rtobject with no parameters

!rtobject
		
RTSS Object Information
		
Address:             0xfffff88008187ce0    Name:               <Unnamed Object>
Reference count:     0x0000000000000001    Type:               RTSS Process
		
Address:             0xfffff880080dac20    Name:               <Unnamed Object>
Reference count:     0x0000000000000001    Type:               RTSS Thread
		
Address:             0xfffffa800894c000    Name:               <Unnamed Object>
Reference count:     0x0000000000000001    Type:               Mutex

rtxobject with an object address

!rtobject 0xfffffa800894c000
		
RTSS Object Information
		
Address:             0xfffffa800894c000    Name:               <Unnamed Object>
Reference count:     0x0000000000000001    Type:               Mutex
Count:               0x0000000000000000    Owning thread:      0xfffffa80089dd000
Abandoned:           No

rtobject with a process object filter

!rtobject -tprocess
		
RTSS Object Information
		
Address:             0xfffff88008187ce0    Name:               <Unnamed Object>
Reference count:     0x0000000000000001    Type:               RTSS Process
		
Address:             0xfffffa80089df000    Name:               <Unnamed Object>
Reference count:     0x0000000000000001    Type:               RTSS Process
		
Address:             0xfffffa8005cc0000    Name:               <Unnamed Object>
Reference count:     0x0000000000000001    Type:               RTSS Process
		
Address:             0xfffffa800890e000    Name:               <Unnamed Object>
Reference count:     0x0000000000000001    Type:               RTSS Process

Related topics: