diff options
Diffstat (limited to 'src/core/hle/kernel/process.cpp')
| -rw-r--r-- | src/core/hle/kernel/process.cpp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/core/hle/kernel/process.cpp b/src/core/hle/kernel/process.cpp index cc37e574c..b764f750f 100644 --- a/src/core/hle/kernel/process.cpp +++ b/src/core/hle/kernel/process.cpp | |||
| @@ -26,10 +26,8 @@ SharedPtr<CodeSet> CodeSet::Create(std::string name, u64 program_id) { | |||
| 26 | return codeset; | 26 | return codeset; |
| 27 | } | 27 | } |
| 28 | 28 | ||
| 29 | CodeSet::CodeSet() { | 29 | CodeSet::CodeSet() {} |
| 30 | } | 30 | CodeSet::~CodeSet() {} |
| 31 | CodeSet::~CodeSet() { | ||
| 32 | } | ||
| 33 | 31 | ||
| 34 | u32 Process::next_process_id; | 32 | u32 Process::next_process_id; |
| 35 | 33 | ||
| @@ -282,10 +280,8 @@ ResultCode Process::LinearFree(VAddr target, u32 size) { | |||
| 282 | return RESULT_SUCCESS; | 280 | return RESULT_SUCCESS; |
| 283 | } | 281 | } |
| 284 | 282 | ||
| 285 | Kernel::Process::Process() { | 283 | Kernel::Process::Process() {} |
| 286 | } | 284 | Kernel::Process::~Process() {} |
| 287 | Kernel::Process::~Process() { | ||
| 288 | } | ||
| 289 | 285 | ||
| 290 | SharedPtr<Process> g_current_process; | 286 | SharedPtr<Process> g_current_process; |
| 291 | } | 287 | } |