summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/srv.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Ensure all kernel objects are released during shutdownYuri Kunde Schlesner2015-07-171-0/+1
| | | | | | | | 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 upspurpasmart962014-12-261-9/+0
|
* License changepurpasmart962014-12-211-1/+1
|
* Add `override` keyword through the code.Yuri Kunde Schlesner2014-10-261-1/+1
| | | | This was automated using `clang-modernize`.
* Core: Alter the kernel string functions to use std::string instead of const char*.Lioncash2014-08-181-1/+1
| | | | 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 svcSendSyncRequestbunnei2014-05-271-6/+0
|
* - updated service(s) to be KernelObject'sbunnei2014-05-191-1/+1
| | | | - various cleanups
* - moved Handle/Result definitions to kernel.hbunnei2014-05-191-1/+1
| | | | - added ResetType enum
* removed DISALLOW_COPY_AND_ASSIGN in favor of NonCopyable classbunnei2014-04-281-3/+0
|
* updated service commentsbunnei2014-04-171-3/+4
|
* - added stubbed out GSP::Gpu service interfacebunnei2014-04-161-1/+1
| | | | - various cleanups/refactors to HLE services
* restructured hle:services completely to use function lookup tablesbunnei2014-04-161-0/+39