summaryrefslogtreecommitdiffstats
path: root/src/core/hle/syscall.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* renamed "syscall" module to "svc" (more accurate naming)bunnei2014-05-211-348/+0
|
* renamed "session" to "handle"bunnei2014-05-191-3/+3
|
* fix warningbunnei2014-05-191-1/+1
|
* renamed "UID" to "Handle" where appropriatebunnei2014-05-191-2/+2
|
* - added stub for CreateEventbunnei2014-05-181-8/+22
| | | | - changed some stubbed SVCs to return unique handle names for debugging purposes
* added stubbed function for WaitSynchronizationNbunnei2014-05-181-3/+13
|
* cleanups to SVC CreateThreadbunnei2014-05-171-8/+15
|
* - added SVC stubs for QueryMemory and GetThreadIdbunnei2014-05-161-2/+14
| | | | - added SVC structs MemoryInfo and PageInfo
* - added ThreadContext structbunnei2014-05-161-8/+12
| | | | - cleaned up CreateThread svc
* added CreateThread, CreateMutex, and ReleaseMutex SVC stubs (just parameter decoding for now)bunnei2014-05-141-6/+37
|
* removed unnecessary log messagebunnei2014-05-081-1/+1
|
* - added debug logging to syscall.cppbunnei2014-05-071-134/+162
| | | | - added stubbed HLE syscall functions for svc_GetResourceLimit and svc_GetResourceLimitCurrentValues
* - added some function wrappers for HLEbunnei2014-05-021-2/+17
| | | | | - added stub for SVC CreateAddressArbiter - added OutputDebugString SVC
* fixed bug where svc_ControlMemory was not properly getting passed in parametersbunnei2014-04-251-2/+2
|
* - added preliminary support for svc_MapMemoryBlockbunnei2014-04-251-4/+34
| | | | | - added shared memory region - moarrrr cleanups to memory_map
* renamed hw_lcd module to just lcdbunnei2014-04-181-2/+0
|
* added GSP heap memory allocationbunnei2014-04-181-1/+25
|
* - fixed tabs in function_wrappers.hbunnei2014-04-171-126/+138
| | | | | - fixed log message wording in hle.cpp - added syscall stubs for CloseHandle and WaitSynchronization1
* - added HLE to connect to "srv:" servicebunnei2014-04-131-128/+138
| | | | | | - 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 syscallbunnei2014-04-121-0/+153
- added service.h as an initial service interface