aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/srv.cpp
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.
* Common: Remove common.hGravatar Yuri Kunde Schlesner2015-05-07
|
* Kernel: Stop creating useless Handles during object creationGravatar Yuri Kunde Schlesner2015-02-02
| | | | | They're finally unnecessary, and will stop cluttering the application's handle table.
* Service: Clean-up InterfaceGravatar Yuri Kunde Schlesner2015-02-02
|
* Make Port/Service registration and querying more HW-accurateGravatar Yuri Kunde Schlesner2015-02-02
|
* Kernel: Convert Event to not use HandlesGravatar Yuri Kunde Schlesner2015-01-30
|
* Event: Fixed some bugs and cleanup (Subv)Gravatar bunnei2015-01-21
|
* Logging: Log all called service functions (under trace). Compile out all ↵Gravatar archshift2015-01-10
| | | | trace logs under release for performance.
* Services: Clean up a few things and add a few function namesGravatar purpasmart962015-01-05
|
* More services & small clean upsGravatar purpasmart962014-12-25
|
* License changeGravatar purpasmart962014-12-20
|
* Remove SyncRequest from K::Object and create a new K::Session typeGravatar Yuri Kunde Schlesner2014-12-15
| | | | | | | This is a first step at fixing the conceptual insanity that is our handling of service and IPC calls. For now, interfaces still directly derived from Session because we don't have the infrastructure to do it properly. (That is, Processes and scheduling them.)
* Convert old logging calls to new logging macrosGravatar Yuri Kunde Schlesner2014-12-13
|
* HLE: Revamp error handling throrough the HLE codeGravatar Yuri Kunde Schlesner2014-11-24
| | | | | | | | | | | | | | | | | | | | | | | | | | All service calls in the CTR OS return result codes indicating the success or failure of the call. Previous to this commit, Citra's HLE emulation of services and the kernel universally either ignored errors or returned dummy -1 error codes. This commit makes an initial effort to provide an infrastructure for error reporting and propagation which can be use going forward to make HLE calls accurately return errors as the original system. A few parts of the code have been updated to use the new system where applicable. One part of this effort is the definition of the `ResultCode` type, which provides facilities for constructing and parsing error codes in the structured format used by the CTR. The `ResultVal` type builds on `ResultCode` by providing a container for values returned by function that can report errors. It enforces that correct error checking will be done on function returns by preventing the use of the return value if the function returned an error code. Currently this change is mostly internal since errors are still suppressed on the ARM<->HLE border, as a temporary compatibility hack. As functionality is implemented and tested this hack can be eventually removed.
* Add static to some variablesGravatar Lioncash2014-11-18
|
* core: Mark some hle functions as staticGravatar Lioncash2014-11-17
| | | | These functions are not referred to by their linkage name outside of the translation unit, so they can be marked as static.
* Added ReceiveNotification, PublishToSubscriber unimplemented functions to SRVGravatar archshift2014-11-01
|
* core: Prune redundant includesGravatar archshift2014-09-08
|
* srv::Initialize: Return "success" status code.Gravatar bunnei2014-08-28
|
* SRV: Updated GetProcSemaphore to create an event instead of a mutex.Gravatar bunnei2014-08-05
|
* HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)Gravatar bunnei2014-06-13
|
* svc: added optional name field to Event and Mutex (used for debugging)Gravatar bunnei2014-06-02
|
* srv: fix to log unimplemented service (instead of crash)Gravatar bunnei2014-05-29
|
* hle: cleaned up log messagesGravatar bunnei2014-05-29
|
* srv: changed a NOTICE_LOG to DEBUG_LOGGravatar bunnei2014-05-29
|
* srv: added a real mutex for GetProcSemaphore (instead of stubbed)Gravatar bunnei2014-05-26
|
* renamed "UID" to "Handle" where appropriateGravatar bunnei2014-05-18
|
* - moved Handle/Result definitions to kernel.hGravatar bunnei2014-05-18
| | | | - added ResetType enum
* added stubbed GetProcSemaphore - does nothing but avoids an exceptionGravatar bunnei2014-05-16
|
* - removed HLE mem "hack" and replaced with kernel mem regionGravatar bunnei2014-05-07
| | | | | - added a helper function for getting command buffer for services - fixed bug where GSP DMA was incorrectly being done in DataSynchronizationBarrier (instead of gsp_TriggerCmdReqQueue)
* - refactored how service functions are calledGravatar bunnei2014-04-24
| | | | - added option to create/delete service handles
* fixed bug with printing std::string in log messagesGravatar bunnei2014-04-16
|
* 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