1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:57:43 +00:00

Kernel+LibCore: Add process creation time to /sys/kernel/processes

This commit is contained in:
Tim Ledbetter 2023-06-09 17:22:07 +01:00 committed by Andreas Kling
parent 4d49852454
commit f95dccdb45
3 changed files with 4 additions and 0 deletions

View file

@ -7,6 +7,7 @@
#pragma once
#include <AK/DeprecatedString.h>
#include <AK/Time.h>
#include <AK/Vector.h>
#include <unistd.h>
@ -49,6 +50,7 @@ struct ProcessStatistics {
DeprecatedString tty;
DeprecatedString pledge;
DeprecatedString veil;
UnixDateTime creation_time;
size_t amount_virtual;
size_t amount_resident;
size_t amount_shared;