summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/process.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/process.h')
-rw-r--r--src/core/hle/kernel/process.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h
index 35fe16433..b775e1fd0 100644
--- a/src/core/hle/kernel/process.h
+++ b/src/core/hle/kernel/process.h
@@ -92,18 +92,6 @@ public:
92 static ResultCode Initialize(Process* process, Core::System& system, std::string name, 92 static ResultCode Initialize(Process* process, Core::System& system, std::string name,
93 ProcessType type); 93 ProcessType type);
94 94
95 std::string GetTypeName() const override {
96 return "Process";
97 }
98 std::string GetName() const override {
99 return name;
100 }
101
102 static constexpr HandleType HANDLE_TYPE = HandleType::Process;
103 HandleType GetHandleType() const override {
104 return HANDLE_TYPE;
105 }
106
107 /// Gets a reference to the process' page table. 95 /// Gets a reference to the process' page table.
108 KPageTable& PageTable() { 96 KPageTable& PageTable() {
109 return *page_table; 97 return *page_table;
@@ -468,9 +456,6 @@ private:
468 /// Process total image size 456 /// Process total image size
469 std::size_t image_size{}; 457 std::size_t image_size{};
470 458
471 /// Name of this process
472 std::string name;
473
474 /// Schedule count of this process 459 /// Schedule count of this process
475 s64 schedule_count{}; 460 s64 schedule_count{};
476 461