aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/srv.h
Commit message (Collapse)AuthorAge
* Ensure all kernel objects are released during shutdownGravatar Yuri Kunde Schlesner2015-07-17
| | | | | | | | 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.
* More services & small clean upsGravatar purpasmart962014-12-25
|
* License changeGravatar purpasmart962014-12-20
|
* Add `override` keyword through the code.Gravatar Yuri Kunde Schlesner2014-10-26
| | | | This was automated using `clang-modernize`.
* Core: Alter the kernel string functions to use std::string instead of const ↵Gravatar Lioncash2014-08-17
| | | | | | char*. Most functions already operate on std::strings. This also removes the need to manually null terminate thread names.
* kernel: add a SyncRequest method to KernelObject for use with svcSendSyncRequestGravatar bunnei2014-05-26
|
* - updated service(s) to be KernelObject'sGravatar bunnei2014-05-18
| | | | - various cleanups
* - moved Handle/Result definitions to kernel.hGravatar bunnei2014-05-18
| | | | - added ResetType enum
* removed DISALLOW_COPY_AND_ASSIGN in favor of NonCopyable classGravatar bunnei2014-04-27
|
* updated service commentsGravatar bunnei2014-04-16
|
* - added stubbed out GSP::Gpu service interfaceGravatar bunnei2014-04-16
| | | | - various cleanups/refactors to HLE services
* restructured hle:services completely to use function lookup tablesGravatar bunnei2014-04-15