Kernel: Process keeps track if forked process has called exec*()

This commit is contained in:
Bananymous
2023-08-22 14:53:46 +03:00
parent 60a2185ee6
commit d745fca86a
2 changed files with 5 additions and 0 deletions

View File

@@ -180,6 +180,8 @@ namespace Kernel
userspace_info_t m_userspace_info;
ExitStatus m_exit_status;
bool m_has_called_exec { false };
BAN::UniqPtr<PageTable> m_page_table;
BAN::RefPtr<TTY> m_controlling_terminal;