diff options
author | Jakub Berkop <jakub.berkop@gmail.com> | 2022-02-12 17:53:23 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-02-14 11:38:13 +0100 |
commit | 6218ec8afae28bbe1ffdd841b20fcb437658f328 (patch) | |
tree | f9d6fa2f9e9dbab3af80179372aba92ff92d0c11 /Userland/Utilities/profile.cpp | |
parent | cdfb388154a757f0658545cc2f66055aa2773f9e (diff) | |
download | serenity-6218ec8afae28bbe1ffdd841b20fcb437658f328.zip |
profile: Document "read" profiling event
Diffstat (limited to 'Userland/Utilities/profile.cpp')
-rw-r--r-- | Userland/Utilities/profile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/profile.cpp b/Userland/Utilities/profile.cpp index b5ea7bbf28..5756d78cd2 100644 --- a/Userland/Utilities/profile.cpp +++ b/Userland/Utilities/profile.cpp @@ -61,7 +61,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) auto print_types = [] { outln(); - outln("Event type can be one of: sample, context_switch, page_fault, syscall, kmalloc and kfree."); + outln("Event type can be one of: sample, context_switch, page_fault, syscall, read, kmalloc and kfree."); }; if (!args_parser.parse(arguments, Core::ArgsParser::FailureBehavior::PrintUsage)) { |