1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:37:35 +00:00

Base: Add man page for purge(8)

This commit is contained in:
Andreas Kling 2019-12-29 13:23:21 +01:00
parent 1f31156173
commit e0ec4f89b2

View file

@ -0,0 +1,28 @@
## Name
purge - release memory
## Synopsis
```**sh
$ purge [options]
```
## Description
This program instructs the kernel to release memory that can
be released without interacting with its userspace owner(s).
## Options
* `-c`: Release all clean inode-backed memory.
* `-v`: Release all purgeable memory currently marked volatile.
If no options are specified, all possible memory is released.
## Examples
```sh
$ purge
Purged page count: 744
```