mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
Utilities: Make sure columns are properly aligned for pmap on x86_64
This commit is contained in:
parent
11e02f222d
commit
29c5dcd2fa
Notes:
sideshowbarker
2024-07-18 08:36:49 +09:00
Author: https://github.com/gunnarbeutner Commit: https://github.com/SerenityOS/serenity/commit/29c5dcd2fa1 Pull-request: https://github.com/SerenityOS/serenity/pull/8925 Reviewed-by: https://github.com/awesomekling
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
Reference in a new issue