summaryrefslogtreecommitdiffstats
path: root/src/core/hle/function_wrappers.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* core: Replace "AppCore" nomenclature with just "CPU".bunnei2016-12-221-30/+30
|
* core: Remove HLE module, consolidate code & various cleanups.bunnei2016-12-221-8/+8
|
* core: Consolidate core and system state, remove system module & cleanups.bunnei2016-12-221-30/+30
|
* Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2016-09-211-1/+1
| | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-35/+68
|
* Kernel/SVC: Implemented svcCreatePort.Subv2016-06-111-0/+10
|
* Kernel/SVC: Fixed the register order for svcCreateMemoryBlock.Subv2016-05-131-1/+2
| | | | R0 is used as the last parameter instead of R4.
* svc: Move ResetType enum to the kernel event headerLioncash2016-03-131-0/+1
|
* HLE/SVC: Implement UnmapMemoryBlock.Subv2016-01-141-0/+4
| | | | This implementation will need to be (almost completely) changed when we implement multiprocess support.
* Kernel: Implement svcGetSystemInfoYuri Kunde Schlesner2015-12-011-0/+8
| | | | | This makes smealum/ctrulib@b96dd51d3349961189d4ab1bc2a5c45deff21c09 work with Citra.
* Kernel: Implement svcGetProcessInfo in a basic wayYuri Kunde Schlesner2015-08-161-0/+8
| | | | | This also adds some basic memory usage accounting. These two types are used by Super Smash Bros. during startup.
* Merge pull request #888 from zawata/Warning-Fixes-2Yuri Kunde Schlesner2015-07-251-1/+1
|\ | | | | Core\HLE : Fix Warning
| * Core\HLE : Fix Warningzawata2015-07-171-1/+1
| | | | | | | | "signed/unsigned mismatch"
* | Kernel/SVC: Implemented svcQueryProcessMemorySubv2015-07-171-0/+12
| |
* | Kernel/SVC: Implemented svcQueryMemory.Subv2015-07-171-2/+10
|/
* kernel: Fix svcWaitSynch to always acquire requested wait objects.bunnei2015-06-171-3/+14
|
* Implement svcBreakarchshift2015-05-171-0/+4
|
* Core/ResourceLimits: Implemented the basic structure of ResourceLimits.Subv2015-05-151-2/+2
| | | | | | Implemented svcs GetResourceLimit, GetResourceLimitCurrentValues and GetResourceLimitLimitValues. Note that the resource limits do not currently keep track of used objects, since we have no way to distinguish between an object created by the application, and an object created by some HLE module once we're inside Kernel::T::Create.
* Memmap: Re-organize memory function in two filesYuri Kunde Schlesner2015-05-151-3/+3
| | | | | | | memory.cpp/h contains definitions related to acessing memory and configuring the address space mem_map.cpp/h contains higher-level definitions related to configuring the address space accoording to the kernel and allocating memory.
* Thread: Implement priority boost for starved threads.bunnei2015-04-101-0/+7
| | | | | | SVC: Return correct error code on invalid CreateThread processor ID. SVC: Assert when creating a thread with an invalid userland priority.
* SVC: Use CASCADE_RESULT in SVC handlersYuri Kunde Schlesner2015-01-301-4/+0
|
* SVC: Change return type of handlers to ResultCodeYuri Kunde Schlesner2015-01-301-42/+37
|
* Move ThreadContext to core/core.h and deal with the falloutYuri Kunde Schlesner2015-01-091-0/+2
|
* SVC: Implemented the Timer service calls.Subv2015-01-091-0/+6
|
* SOC_U: Preliminary implementation of sockets.Subv2014-12-311-0/+7
| | | | | | | | | | | | | Stubbed CreateMemoryBlock Using Berkeley sockets, and Winsock2.2 on Windows. So far ftpony creates the socket and accepts incoming connections SOC_U: Renamed functions to maintain consistency Also prevents possible scope errors / conflicts with the actual Berkeley socket functions SOCU: Close all the opened sockets when cleaning up SOCU
* License changepurpasmart962014-12-211-1/+1
|
* SVC: Implemented ReleaseSemaphore.Subv2014-12-131-0/+7
| | | | This behavior was tested on hardware, however i'm still not sure what use the "initial_count" parameter has
* SVC: Implemented svcCreateSemaphoreSubv2014-12-131-0/+7
| | | | | ToDo: Implement svcReleaseSemaphore * Some testing against hardware needed
* Remove trailing spaces in every file but the ones imported from SkyEye, AOSP or generatedEmmanuel Gil Peyrot2014-11-191-2/+2
|
* SVC: Added support for svc_GetSystemTick.bunnei2014-08-191-18/+42
| | | | Changed HLE function return methods to be static inline functions.
* function_wrappers: Fixed incorrect wrapper, added another.bunnei2014-07-081-2/+9
|
* HLE: Moved "PARAM" and "RETURN" macros to function_wrappers.h (this is only module where they are needed).bunnei2014-06-131-0/+6
|
* SVC: Renamed all function wrapper templates to Wrap, moved to HLE namespace.bunnei2014-06-131-31/+19
|
* SVC: Cleaned up function wrappers to pass in correct argument types.bunnei2014-06-131-722/+63
|
* svc: updated WaitSynchronizationN to properly use first pointer argumentbunnei2014-06-021-1/+3
|
* svc: cleaned up function_wrappers, updated various SVCs to make use of pointer argumentsbunnei2014-06-021-15/+22
|
* svc: added missing function wrapper for SleepThreadbunnei2014-06-011-0/+4
|
* svc: added svcClearEvent, stubbed function for svcArbitrateAddress, and various fixesbunnei2014-05-301-0/+6
| | | | | | - force kernel reschedule after svcWaitSynchronization - fixed some bugs with passing in pointer arguments - cleaned up some comments and log messages
* hle: properly cast 64-bit function wrapper parameters to (u64)bunnei2014-05-291-2/+2
|
* hle: removed PARAM64 macro (this was incorrect), made several bug fixes accordingly for decoding U64 function parametersbunnei2014-05-291-2/+2
|
* added stubbed function for WaitSynchronizationNbunnei2014-05-181-1/+6
|
* - added SVC stubs for QueryMemory and GetThreadIdbunnei2014-05-161-0/+5
| | | | - added SVC structs MemoryInfo and PageInfo
* added CreateThread, CreateMutex, and ReleaseMutex SVC stubs (just parameter decoding for now)bunnei2014-05-141-1/+1
|
* - added debug logging to syscall.cppbunnei2014-05-071-1/+11
| | | | - added stubbed HLE syscall functions for svc_GetResourceLimit and svc_GetResourceLimitCurrentValues
* - added some function wrappers for HLEbunnei2014-05-021-8/+12
| | | | | - added stub for SVC CreateAddressArbiter - added OutputDebugString SVC
* added a new function wrapperbunnei2014-04-171-0/+5
|
* - fixed tabs in function_wrappers.hbunnei2014-04-171-268/+273
| | | | | - fixed log message wording in hle.cpp - added syscall stubs for CloseHandle and WaitSynchronization1
* added initial modules for setting up SysCall HLEbunnei2014-04-111-0/+726