Userland: Add pmap utility

This commit is contained in:
Brendan Coles 2020-12-23 23:25:53 +00:00 committed by Andreas Kling
commit b71edba06d
Notes: sideshowbarker 2024-07-19 00:38:31 +09:00
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)