aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/srv.h
AgeCommit message (Collapse)Author
2017-06-06Service: Move SRV interface to a new sm/ subdirectoryYuri Kunde Schlesner
This will contain the implementation of the sm (Service Manager) system module.
2016-12-15core: Add missing #pragma once directives where applicableLioncash
2016-12-11Add all services to the Service namespaceLioncash
Previously there was a split where some of the services were in the Service namespace and others were not.
2015-07-17Ensure all kernel objects are released during shutdownYuri Kunde Schlesner
This commit fixes several kernel object leaks. The most severe of them was threads not being removed from the private handle table used for CoreTiming events. This resulted in Threads never being released, which in turn held references to Process, causing CodeSets to never be freed when loading other applications.
2014-12-25More services & small clean upspurpasmart96
2014-12-20License changepurpasmart96
2014-10-26Add `override` keyword through the code.Yuri Kunde Schlesner
This was automated using `clang-modernize`.
2014-08-17Core: Alter the kernel string functions to use std::string instead of const ↵Lioncash
char*. Most functions already operate on std::strings. This also removes the need to manually null terminate thread names.
2014-05-26kernel: add a SyncRequest method to KernelObject for use with svcSendSyncRequestbunnei
2014-05-18- updated service(s) to be KernelObject'sbunnei
- various cleanups
2014-05-18- moved Handle/Result definitions to kernel.hbunnei
- added ResetType enum
2014-04-27removed DISALLOW_COPY_AND_ASSIGN in favor of NonCopyable classbunnei
2014-04-16updated service commentsbunnei
2014-04-16- added stubbed out GSP::Gpu service interfacebunnei
- various cleanups/refactors to HLE services
2014-04-15restructured hle:services completely to use function lookup tablesbunnei