blob: 30dd6ba86cb46649f939c469e9de81418d6659e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
## Name
Inspector - Serenity process inspector
## Synopsis
```**sh
$ Inspector [pid]
```
## Arguments
* pid: Process ID to inspect
## Description
Inspector facilitates process inspection via RPC.
The inspected process must have previously allowed the
[`accept`(2)](../man2/accept.md) system call with
[`pledge`(2)](../man2/pledge.md) to allow inspection
via UNIX socket.
## Examples
```sh
$ Inspector $(pidof Shell)
```
|