mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
Base: Add man page for purge(8)
This commit is contained in:
parent
1f31156173
commit
e0ec4f89b2
Notes:
sideshowbarker
2024-07-19 10:34:03 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/e0ec4f89b26
1 changed files with 28 additions and 0 deletions
28
Base/usr/share/man/man8/purge.md
Normal file
28
Base/usr/share/man/man8/purge.md
Normal 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
|
||||
```
|
Loading…
Reference in a new issue