1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 14:37:45 +00:00

Inspector: Add help documentation

This commit is contained in:
Brendan Coles 2021-02-23 12:44:41 +00:00 committed by Andreas Kling
parent 82278d632f
commit 501834ba45
3 changed files with 39 additions and 1 deletions

View file

@ -0,0 +1,25 @@
## Name
Inspector - Serenity process inspector
## Synopsis
```**sh
$ Inspector [pid]
```
## 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)
```