!rthandle

Displays information about one or more RTSS handles.

Syntax

!rthandle <process> [<level>] [-t<object>]

Parameters

process

RTSS process address. This parameter is required.

level [optional]

Optional value for the level of detail to return.

Parameter

Information Displayed

0 or no value provided (default)

Summary information, including object type, object name, object address, and reference count

1

Extended information, including all summary information plus object attribute, object size, and address of the function that dispatched the handle

-t [optional]

Optional flag -t followed by a string that specifies the type of object for which you want to find handle information. Note that this applies only if level is 1. Note that there is no space between the -t flag and the specified object.

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

Remarks

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

This command is supported for:

Examples

rthandle with a process object and default detail level

!rthandle 0xfffffa80089df000
		
RTSS Handle Information:
		
Address:             0xfffffa800894c000    Name:               <Unnamed Object>
Reference count:     0x0000000000000001    Type:               Mutex
		
Address:             0xfffffa800894b000    Name:               <Unnamed Object>
Reference count:     0x0000000000000001    Type:               Mutex
		
Address:             0xfffffa800894a000    Name:               <Unnamed Object>
Reference count:     0x0000000000000001    Type:               Mutex

 rthandle with a process object and detail level 1

!rthandle 0xfffffa80089df000 1
		
RTSS Handle Information:
		
Address:             0xfffffa800894c000    Name:               <Unnamed Object>
Reference count:     0x0000000000000001    Type:               Mutex
Count:               0x0000000000000000    Owning thread:      0xfffffa80089dd000
Abandoned:           No
		
Address:             0xfffffa800894b000    Name:               <Unnamed Object>
Reference count:     0x0000000000000001    Type:               Mutex
Count:               0x0000000000000000    Owning thread:      0x0000000000000000
Abandoned:           No
		
Address:             0xfffffa800894a000    Name:               <Unnamed Object>
Reference count:     0x0000000000000001    Type:               Mutex
Count:               0x0000000000000000    Owning thread:      0x0000000000000000
Abandoned:           No

Related topics: