summaryrefslogtreecommitdiff
path: root/src/core/hle/svc.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* SVC: Wake up the thread after the delay in WaitSync1Gravatar Subv2015-01-111-3/+2
* Logging: Log all called service functions (under trace). Compile out all trac...Gravatar archshift2015-01-101-1/+0
* Kernel: Start using boost::intrusive_ptr for lifetime managementGravatar Yuri Kunde Schlesner2015-01-091-13/+18
* Merge pull request #444 from yuriks/handle-reform2Gravatar bunnei2015-01-091-20/+32
|\
| * Thread: Reduce use of Handles and move some funcs to inside the class.Gravatar Yuri Kunde Schlesner2015-01-091-20/+31
| * Move ThreadContext to core/core.h and deal with the falloutGravatar Yuri Kunde Schlesner2015-01-091-0/+1
* | Merge pull request #436 from kevinhartman/system-coreGravatar bunnei2015-01-091-0/+5
|\ \ | |/ |/|
| * Warn if a new thread is intended to be run on the system CPU core until we im...Gravatar Kevin Hartman2015-01-071-0/+5
* | Merge pull request #255 from Subv/cbranch_3Gravatar bunnei2015-01-081-4/+32
|\ \
| * | SVC: Implemented the Timer service calls.Gravatar Subv2015-01-081-4/+32
| |/
* / SVC: Fixed SleepThread.Gravatar Subv2015-01-081-0/+4
|/
* SOC_U: Preliminary implementation of sockets.Gravatar Subv2014-12-311-1/+13
* Kernel: New handle managerGravatar Yuri Kunde Schlesner2014-12-281-19/+9
* Rename ObjectPool to HandleTableGravatar Yuri Kunde Schlesner2014-12-281-5/+5
* Merge pull request #291 from purpasmart96/licenseGravatar bunnei2014-12-211-1/+1
|\
| * License changeGravatar purpasmart962014-12-201-1/+1
* | Thread: Wait current thread on svc_SleepThreadGravatar bunnei2014-12-201-1/+2
|/
* Merge pull request #185 from purpasmart96/mem_permGravatar bunnei2014-12-171-0/+4
|\
| * Kernel:Add missing permissions in shared memory & svcGravatar purpasmart962014-11-181-0/+4
* | Remove SyncRequest from K::Object and create a new K::Session typeGravatar Yuri Kunde Schlesner2014-12-151-7/+4
* | Kernel/Semaphores: Fixed buildGravatar Subv2014-12-131-2/+2
* | SVC: Implemented ReleaseSemaphore.Gravatar Subv2014-12-131-3/+10
* | SVC: Implemented svcCreateSemaphoreGravatar Subv2014-12-131-1/+10
* | Convert old logging calls to new logging macrosGravatar Yuri Kunde Schlesner2014-12-131-27/+27
* | MemMap: Renamed "GSP" heap to "linear", as this is not specific to GSP.Gravatar bunnei2014-12-121-1/+1
* | SVC: Implemented GetThreadId.Gravatar Subv2014-12-041-4/+5
* | SVC: Add debug log to ArbitrateAddress.Gravatar bunnei2014-11-261-0/+2
* | SVC: SleepThread should yield to the next ready thread.Gravatar bunnei2014-11-261-0/+3
* | HLE: Revamp error handling throrough the HLE codeGravatar Yuri Kunde Schlesner2014-11-241-31/+37
* | Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ...Gravatar Emmanuel Gil Peyrot2014-11-191-14/+14
* | core: Mark some hle functions as staticGravatar Lioncash2014-11-171-26/+26
|/
* Fix some warningsGravatar Sean2014-10-291-3/+3
* Merge pull request #99 from archshift/ext-checkGravatar bunnei2014-09-111-1/+1
|\
| * Added string_util to common, small changes in loader.cppGravatar archshift2014-09-081-1/+1
* | core: Prune redundant includesGravatar archshift2014-09-081-3/+0
|/
* Merge pull request #55 from lioncash/stringGravatar bunnei2014-08-181-5/+5
|\
| * Core: Alter the kernel string functions to use std::string instead of const c...Gravatar Lioncash2014-08-171-5/+5
* | SVC: Added support for svc_GetSystemTick.Gravatar bunnei2014-08-181-1/+6
|/
* Core: Fix a formatting error in svc.cppGravatar Lioncash2014-08-171-3/+2
* SVC: Fixed typo with MapMemoryBlock DEBUG_LOG call.Gravatar bunnei2014-08-071-1/+1
* SVC: Removed ArbitrateAddress log message that spams to much.Gravatar bunnei2014-08-051-2/+0
* Kernel: Added preliminary support for address arbiters.Gravatar bunnei2014-07-081-8/+10
* SharedMemory: Updated MapSharedMemory to use an enum for permissions.Gravatar bunnei2014-07-051-10/+9
* GSP: Fixed to use real shared memory object, various cleanups.Gravatar bunnei2014-07-051-5/+6
* SVC: Renamed all function wrapper templates to Wrap, moved to HLE namespace.Gravatar bunnei2014-06-131-126/+126
* SVC: Cleaned up function wrappers to pass in correct argument types.Gravatar bunnei2014-06-131-148/+138
* SVC: Moved declaration of "wait" variable in SendSyncRequest for improved rea...Gravatar bunnei2014-06-131-1/+1
* HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)Gravatar bunnei2014-06-131-107/+107
* HLE: Updated various handle debug assertions to be more clear.Gravatar bunnei2014-06-131-6/+6
* Kernel: Added real support for thread and event blockingGravatar bunnei2014-06-131-28/+31