forked from eden-emu/eden
Fix KShareMemory object leak
This commit is contained in:
parent
7cd43b139a
commit
5fbfc4c19e
5 changed files with 106 additions and 3 deletions
|
@ -34,6 +34,7 @@ class KernelCore;
|
|||
class KPageTable;
|
||||
class KResourceLimit;
|
||||
class KThread;
|
||||
class KSharedMemoryInfo;
|
||||
class TLSPage;
|
||||
|
||||
struct CodeSet;
|
||||
|
@ -448,6 +449,9 @@ private:
|
|||
/// List of threads that are running with this process as their owner.
|
||||
std::list<const KThread*> thread_list;
|
||||
|
||||
/// List of shared memory that are running with this process as their owner.
|
||||
std::list<KSharedMemoryInfo*> shared_memory_list;
|
||||
|
||||
/// Address of the top of the main thread's stack
|
||||
VAddr main_thread_stack_top{};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue