mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:17:35 +00:00
Profiler: Move everything into the "Profiler" namespace
This commit is contained in:
parent
d29e2dd2d7
commit
dbbc6096a9
17 changed files with 66 additions and 0 deletions
|
@ -12,6 +12,8 @@
|
|||
#include <AK/Vector.h>
|
||||
#include <LibELF/Image.h>
|
||||
|
||||
namespace Profiler {
|
||||
|
||||
struct MappedObject {
|
||||
NonnullRefPtr<MappedFile> file;
|
||||
ELF::Image elf;
|
||||
|
@ -66,3 +68,5 @@ struct Process {
|
|||
return timestamp >= start_valid && (end_valid == 0 || timestamp <= end_valid);
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue