What is the unit of a "page" in /proc/<pid>/statm
Solution 1:
The pagesize is a unit of memory assignment/addressing used by the Linux kernel.
You find out what the size it is (in bytes) with getconf PAGESIZE
4096 = 4kB is the default.
The pagesize is a unit of memory assignment/addressing used by the Linux kernel.
You find out what the size it is (in bytes) with getconf PAGESIZE
4096 = 4kB is the default.