Archived
1
0
This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
citra/src/core/hle/kernel
Lioncash 1f2e75ecea kernel/vm_manager: Remove redundant Reset call in destructor
This is performing more work than would otherwise be necessary during
VMManager's destruction. All we actually want to occur in this scenario
is for any allocated memory to be freed, which will happen automatically
as the VMManager instance goes out of scope.

Anything else being done is simply unnecessary work.
2019-06-24 17:21:13 +02:00
..
address_arbiter.cpp Kernel: replace boost::intrusive_ptr with std::shared_ptr 2019-03-24 14:32:11 -04:00
address_arbiter.h kernel: Make handle type declarations constexpr 2019-04-15 18:10:11 +02:00
client_port.cpp kernel/server_session: Return a std::pair from CreateSessionPair() 2019-04-15 21:46:57 +02:00
client_port.h kernel: Make handle type declarations constexpr 2019-04-15 18:10:11 +02:00
client_session.cpp Kernel: replace boost::intrusive_ptr with std::shared_ptr 2019-03-24 14:32:11 -04:00
client_session.h kernel: Make handle type declarations constexpr 2019-04-15 18:10:11 +02:00
config_mem.cpp Kernel: make config_mem and MapSharedPages members of KernelSystem 2018-11-01 12:56:40 -04:00
config_mem.h Kernel: make config_mem and MapSharedPages members of KernelSystem 2018-11-01 12:56:40 -04:00
errors.h Kernel: reimplement memory management on physical FCRAM (#4392) 2018-11-06 15:00:47 -05:00
event.cpp Port various minor changes from yuzu PRs (#4725) 2019-05-01 14:28:49 +02:00
event.h Port various minor changes from yuzu PRs (#4725) 2019-05-01 14:28:49 +02:00
handle_table.cpp Kernel: replace boost::intrusive_ptr with std::shared_ptr 2019-03-24 14:32:11 -04:00
handle_table.h cleanup includes 2019-03-26 10:50:41 -04:00
hle_ipc.cpp HLE/IPC: HLEContext can memorize the client thread and use it for SleepClientThread 2019-04-02 13:23:39 -04:00
hle_ipc.h HLE/IPC: HLEContext can memorize the client thread and use it for SleepClientThread 2019-04-02 13:23:39 -04:00
ipc.cpp memory: Reorder parameters of CopyBlock to a more sensible order 2019-04-19 19:46:09 +01:00
ipc.h Kernel: replace boost::intrusive_ptr with std::shared_ptr 2019-03-24 14:32:11 -04:00
kernel.cpp Kernel: replace boost::intrusive_ptr with std::shared_ptr 2019-03-24 14:32:11 -04:00
kernel.h kernel/server_session: Return a std::pair from CreateSessionPair() 2019-04-15 21:46:57 +02:00
memory.cpp Kernel: replace usage of Core::System::GetInstance()::Timing() 2019-02-14 14:04:46 -05:00
memory.h Memory: move GetPhysicalPointer and IsValidPhysicalAddress into class 2018-12-05 20:21:14 -05:00
mutex.cpp Port various minor changes from yuzu PRs (#4725) 2019-05-01 14:28:49 +02:00
mutex.h Port various minor changes from yuzu PRs (#4725) 2019-05-01 14:28:49 +02:00
object.cpp Kernel: pass ref down to Object and wrap ID counter into kernel state 2018-10-18 21:41:36 -04:00
object.h Kernel: replace boost::intrusive_ptr with std::shared_ptr 2019-03-24 14:32:11 -04:00
process.cpp Port various minor changes from yuzu PRs (#4725) 2019-05-01 14:28:49 +02:00
process.h Port various minor changes from yuzu PRs (#4725) 2019-05-01 14:28:49 +02:00
resource_limit.cpp Kernel: replace boost::intrusive_ptr with std::shared_ptr 2019-03-24 14:32:11 -04:00
resource_limit.h kernel: Make handle type declarations constexpr 2019-04-15 18:10:11 +02:00
semaphore.cpp Port various minor changes from yuzu PRs (#4725) 2019-05-01 14:28:49 +02:00
semaphore.h Port various minor changes from yuzu PRs (#4725) 2019-05-01 14:28:49 +02:00
server_port.cpp Port various minor changes from yuzu PRs (#4725) 2019-05-01 14:28:49 +02:00
server_port.h Port various minor changes from yuzu PRs (#4725) 2019-05-01 14:28:49 +02:00
server_session.cpp Port various minor changes from yuzu PRs (#4725) 2019-05-01 14:28:49 +02:00
server_session.h Port various minor changes from yuzu PRs (#4725) 2019-05-01 14:28:49 +02:00
session.cpp Update the entire application to use the new clang format style 2018-03-09 10:54:43 -07:00
session.h cleanup includes 2019-03-26 10:50:41 -04:00
shared_memory.cpp Kernel: replace boost::intrusive_ptr with std::shared_ptr 2019-03-24 14:32:11 -04:00
shared_memory.h kernel: Make handle type declarations constexpr 2019-04-15 18:10:11 +02:00
shared_page.cpp Kernel: replace usage of Core::System::GetInstance()::Timing() 2019-02-14 14:04:46 -05:00
shared_page.h Kernel: replace usage of Core::System::GetInstance()::Timing() 2019-02-14 14:04:46 -05:00
svc_wrapper.h SVC: use context and generic templates 2018-11-12 13:59:34 -05:00
svc.cpp kernel/server_session: Return a std::pair from CreateSessionPair() 2019-04-15 21:46:57 +02:00
svc.h SVC: hide details in pimpl 2018-11-12 13:59:34 -05:00
thread.cpp Port various minor changes from yuzu PRs (#4725) 2019-05-01 14:28:49 +02:00
thread.h Port various minor changes from yuzu PRs (#4725) 2019-05-01 14:28:49 +02:00
timer.cpp Port various minor changes from yuzu PRs (#4725) 2019-05-01 14:28:49 +02:00
timer.h Port various minor changes from yuzu PRs (#4725) 2019-05-01 14:28:49 +02:00
vm_manager.cpp kernel/vm_manager: Remove redundant Reset call in destructor 2019-06-24 17:21:13 +02:00
vm_manager.h Memory: move memory setup into MemorySystem 2018-12-10 22:01:09 -05:00
wait_object.cpp kernel/wait_object: Make GetHighestPriorityReadyThread() a const member function 2019-04-20 20:38:38 +02:00
wait_object.h Port various minor changes from yuzu PRs (#4725) 2019-05-01 14:28:49 +02:00