mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 05:17:35 +00:00
Utilities: Make sure columns are properly aligned for pmap on x86_64
This commit is contained in:
parent
11e02f222d
commit
29c5dcd2fa
1 changed files with 8 additions and 2 deletions
|
@ -43,10 +43,16 @@ int main(int argc, char** argv)
|
|||
|
||||
outln("{}:", pid);
|
||||
|
||||
#if ARCH(I386)
|
||||
auto padding = "";
|
||||
#else
|
||||
auto padding = " ";
|
||||
#endif
|
||||
|
||||
if (extended) {
|
||||
outln("Address Size Resident Dirty Access VMObject Type Purgeable CoW Pages Name");
|
||||
outln("Address{} Size Resident Dirty Access VMObject Type Purgeable CoW Pages Name", padding);
|
||||
} else {
|
||||
outln("Address Size Access Name");
|
||||
outln("Address{} Size Access Name", padding);
|
||||
}
|
||||
|
||||
auto file_contents = file->read_all();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue