1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:57:44 +00:00

Userland: Add pmap utility

This commit is contained in:
Brendan Coles 2020-12-23 23:25:53 +00:00 committed by Andreas Kling
parent 277c44c2dc
commit b71edba06d
2 changed files with 133 additions and 0 deletions

View file

@ -0,0 +1,27 @@
## Name
pmap - print memory map of a process
## Synopsis
```**sh
$ pmap [-x] PID
```
## Description
Print the memory map of a specified process.
## Options
* `-x`: Extended output
## Examples
```sh
$ pmap $$
```
## See also
* [`ps`(1)](../man1/ps.md)