aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/svc.cpp
AgeCommit message (Expand)Author
2017-12-31svc: Implement svcSetThreadPriority.bunnei
2017-12-31svc: Change SignalProcessWideKey to a stub.bunnei
2017-12-31svc: Implement svcUnmapMemory.bunnei
2017-12-30svc: Minor cleanups.bunnei
2017-12-30svc: Implement svcStartThread.bunnei
2017-12-28kernel: Add SyncObject primitive, use it for ClientSession.bunnei
2017-12-28svc: Implement MapMemory.bunnei
2017-12-28svc: Implement SetHeapSize.bunnei
2017-10-23svc: Implement GetThreadId and GetProcessId.bunnei
2017-10-19hle: Fix QueryMemory response for MemoryInfo.bunnei
2017-10-14hle: Initial implementation of NX service framework and IPC.bunnei
2017-10-14svc: Some logging cleanup.bunnei
2017-10-14svc: Initial nx impl. for QueryMemory, ConnectToPort, SendSyncRequest, etc.bunnei
2017-06-29Merge pull request #2793 from Subv/replyandreceiveSebastian Valle
2017-06-29Kernel/SVC: Pass the current thread as a parameter to ClientSession::SendSync...Subv
2017-06-25Kernel/SVC: Partially implemented svcReplyAndReceive.Subv
2017-06-23Kernel: Implement AcceptSession SVCYuri Kunde Schlesner
2017-06-23Kernel: Implement CreateSessionToPort SVCYuri Kunde Schlesner
2017-06-22Kernel: Implement CreateSession SVCYuri Kunde Schlesner
2017-05-29Kernel: Move HandleTable to a separate fileYuri Kunde Schlesner
2017-05-29Kernel: Move WaitObject to a separate fileYuri Kunde Schlesner
2017-05-29Kernel: Removed HandleTable::GetWaitObjectYuri Kunde Schlesner
2017-05-24Kernel: Centralize error definitions in errors.hYuri Kunde Schlesner
2017-05-07Remove ability to load symbol mapsYuri Kunde Schlesner
2017-04-01Fix OutputDebugString syscallMichael Theall
2017-03-09Refined thread launch on syscore error messagesFernando Sahmkow
2017-02-21Timers: Return an error when calling SetTimer with negative timeouts.Subv
2017-01-11Threads: Check the process' resource limit for the max allowed priority when ...Subv
2017-01-11Thread: Added priority range checking to svcSetThreadPriority and removed pri...Subv
2017-01-06Merge pull request #2410 from Subv/sleepthreadbunnei
2017-01-06Kernel: Fix SharedMemory objects always returning error when addr = 0 (#2404)Hyper
2017-01-05Kernel: Don't attempt to yield execution in SleepThread(0) if there are no av...Subv
2017-01-05Kernel: Remove Thread::wait_objects_index and use wait_objects to hold all th...Subv
2017-01-04Kernel: Use different thread statuses when a thread calls WaitSynchronization...Subv
2017-01-04Kernel/Mutex: Propagate thread priority changes to other threads inheriting t...Subv
2017-01-04Kernel/Mutex: Update a mutex priority when a thread stops waiting on it.Subv
2017-01-04Kernel/Mutex: Implemented priority inheritance.Subv
2017-01-04Kernel: Object ShouldWait and Acquire calls now take a thread as a parameter.Subv
2017-01-04Kernel/Synch: Do not attempt a reschedule on every syscall.Subv
2016-12-22core: Replace "AppCore" nomenclature with just "CPU".bunnei
2016-12-21Address clang-format issues.bunnei
2016-12-21core: Remove HLE module, consolidate code & various cleanups.bunnei
2016-12-21core: Consolidate core and system state, remove system module & cleanups.bunnei
2016-12-17Thread: remove the thread from the thread list when exitingwwylele
2016-12-16Merge pull request #2260 from Subv/schedulingbunnei
2016-12-14Fixed the codestyle to match our clang-format rules.Subv
2016-12-14Fixed the codestyle to match our clang-format rules.Subv
2016-12-10Properly remove a thread from its wait_objects' waitlist when it is awoken by...Subv
2016-12-09WaitSynch: Removed unused variables and reduced SharedPtr copies.Subv
2016-12-08Use std::move where appropriate.Subv