aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service
Commit message (Collapse)AuthorAge
...
| * APT_U: added event creation to Initialize methodGravatar bunnei2014-05-27
| |
| * kernel: added WaitSynchronization method to Kernel::ObjectGravatar bunnei2014-05-26
| |
| * kernel: updated SyncRequest to take boolean thread wait result as a parameterGravatar bunnei2014-05-26
| |
| * service: Renamed Sync to SyncRequestGravatar bunnei2014-05-26
| |
| * srv: added a real mutex for GetProcSemaphore (instead of stubbed)Gravatar bunnei2014-05-26
| |
| * kernel: add a SyncRequest method to KernelObject for use with svcSendSyncRequestGravatar bunnei2014-05-26
| |
* | service: fixed typo that MSVC did not catch as an errorGravatar bunnei2014-05-22
|/
* APT_U: added a debug log on calling GetLockHandleGravatar bunnei2014-05-22
|
* mutex: refactored the interface to code to return a Mutex* handleGravatar bunnei2014-05-20
|
* mutex: initial commit of HLE moduleGravatar bunnei2014-05-20
|
* service: removed redundant include of common_types.hGravatar bunnei2014-05-20
|
* renamed "syscall" module to "svc" (more accurate naming)Gravatar bunnei2014-05-20
|
* - created a Kernel namespaceGravatar bunnei2014-05-20
| | | | | - cleaned up Kernel code a bit (moved stuff into namespace, fixed whitespace issues) - added handle types for all different CTROS handles
* apt: changed stubbed handle to be something other than 0xDEADBEEF (used as a ↵Gravatar bunnei2014-05-19
| | | | magic value in other places) so that I can track how it propagates through the app code
* - renamed NewHandle to CreateHandleGravatar bunnei2014-05-18
| | | | - updated CreateHandle/DeleteHandle to use KernelObject's
* - updated service(s) to be KernelObject'sGravatar bunnei2014-05-18
| | | | - various cleanups
* 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
|
* updated APT_U::GetLockHandle to return a valid handleGravatar bunnei2014-05-16
|
* removed unknown fields from GX_CmdBufferHeaderGravatar bunnei2014-05-08
|
* - 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)
* removed DISALLOW_COPY_AND_ASSIGN in favor of NonCopyable classGravatar bunnei2014-04-27
|
* fixed weird spacingGravatar bunnei2014-04-27
|
* hackish but working way to set the framebuffer location to VRAM (used in ↵Gravatar bunnei2014-04-27
| | | | ARM11 demos tested thus far, e.g. yeti3DS)
* added simple GSP GPU ReadHWRegs function to support returning the ↵Gravatar bunnei2014-04-26
| | | | framebuffer address
* added GSP::RegisterInterruptRelayQueue functionGravatar bunnei2014-04-24
|
* - 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
|
* added class stub for HID:User serviceGravatar 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
* removed no longer used function headerGravatar bunnei2014-04-15
|
* restructured hle:services completely to use function lookup tablesGravatar bunnei2014-04-15
|
* fixed naming for APT_UGravatar bunnei2014-04-15
|
* - extracted srv: calls from service.cpp and put in its own moduleGravatar bunnei2014-04-15
| | | | | - added function tables for service calls - lots of refactoring
* added a stub for GetLockHandleGravatar bunnei2014-04-13
|
* added framework for APT service (application and title launching service)Gravatar bunnei2014-04-13
|
* renamed class Interface_SRV to SRVGravatar bunnei2014-04-13
|
* added some very initial command parsing for SRV SyncGravatar bunnei2014-04-13
|
* cleanups to service HLEGravatar bunnei2014-04-12
|
* - added HLE to connect to "srv:" serviceGravatar bunnei2014-04-12
| | | | | | - added a manager for keeping track of services/ports - added a memory mapped region for memory accessed by HLE - added HLE for GetThreadCommandBuffer function
* - renamed hle_syscall to just syscallGravatar bunnei2014-04-11
- added service.h as an initial service interface