summaryrefslogtreecommitdiff
path: root/src/core/hle (follow)
Commit message (Expand)AuthorAgeFilesLines
...
| * | | Kernel/Mutex: Propagate thread priority changes to other threads inheriting t...Gravatar Subv2017-01-045-42/+60
| * | | Kernel/Mutex: Update a mutex priority when a thread stops waiting on it.Gravatar Subv2017-01-045-24/+42
| * | | Kernel/Mutex: Implemented priority inheritance.Gravatar Subv2017-01-045-31/+51
| * | | Kernel: Object ShouldWait and Acquire calls now take a thread as a parameter.Gravatar Subv2017-01-0417-68/+56
| * | | Kernel/Synch: Do not attempt a reschedule on every syscall.Gravatar Subv2017-01-042-2/+18
| |/ /
* | | Fix some warnings (#2399)Gravatar Jonathan Hao2017-01-044-8/+6
* | | Service/NFC: stub GetTagInRangeEventGravatar mailwl2016-12-305-0/+42
|/ /
* | Merge pull request #2240 from wwylele/auto-regionGravatar bunnei2016-12-292-2/+62
|\ \
| * | Config: auto-select region and languageGravatar wwylele2016-12-072-2/+62
* | | Core: remove unused hle.cppGravatar wwylele2016-12-271-58/+0
| |/ |/|
* | core: Move emu_window and key_map into coreGravatar MerryMage2016-12-231-1/+1
* | Service/NWM: add nwm servicesGravatar mailwl2016-12-2217-8/+301
* | Merge pull request #2343 from bunnei/core-cleanupGravatar bunnei2016-12-2213-135/+108
|\ \
| * | ThreadContext: Move from "core" to "arm_interface".Gravatar bunnei2016-12-222-4/+5
| * | core: Replace "AppCore" nomenclature with just "CPU".Gravatar bunnei2016-12-224-44/+43
| * | Address clang-format issues.Gravatar bunnei2016-12-212-11/+12
| * | core: Remove HLE module, consolidate code & various cleanups.Gravatar bunnei2016-12-2112-82/+53
| * | core: Consolidate core and system state, remove system module & cleanups.Gravatar bunnei2016-12-215-45/+45
* | | Merge pull request #2285 from mailwl/csnd-formatGravatar bunnei2016-12-222-49/+92
|\ \ \ | |/ / |/| |
| * | csnd:SND reformat source codeGravatar mailwl2016-12-122-49/+92
* | | Thread: remove the thread from the thread list when exitingGravatar wwylele2016-12-173-3/+15
* | | Kernel: remove object's waiting thread if it is deadGravatar wwylele2016-12-161-1/+2
* | | Merge pull request #2260 from Subv/schedulingGravatar bunnei2016-12-167-195/+209
|\ \ \
| * | | Fixed the codestyle to match our clang-format rules.Gravatar Subv2016-12-143-27/+39
| * | | Properly remove a thread from its wait_objects' waitlist when it is awoken by...Gravatar Subv2016-12-103-2/+11
| * | | WaitSynch: Removed unused variables and reduced SharedPtr copies.Gravatar Subv2016-12-094-73/+56
| * | | Use boost remove_erase_if instead of the erase-remove idiomGravatar Subv2016-12-061-2/+3
| * | | Improved the algorithm for GetHighestPriorityReadyThread.Gravatar Subv2016-12-061-14/+13
| * | | Threading: Added some utility functions and const correctness.Gravatar Subv2016-12-043-15/+35
| * | | Threading: Reworked the way our scheduler works.Gravatar Subv2016-12-037-189/+179
* | | | Merge pull request #2328 from wwylele/fix-traceGravatar Yuri Kunde Schlesner2016-12-151-11/+9
|\ \ \ \
| * | | | FS: fix debug build from #2249Gravatar wwylele2016-12-161-11/+9
* | | | | Merge pull request #2320 from mailwl/cecd-updateGravatar Yuri Kunde Schlesner2016-12-157-13/+79
|\ \ \ \ \
| * | | | | Service/CECD: Add cecd:ndm serviceGravatar mailwl2016-12-157-13/+79
* | | | | | Merge pull request #2331 from lioncash/truncGravatar bunnei2016-12-151-1/+2
|\ \ \ \ \ \
| * | | | | | hid: Get rid of a double -> float truncation warningGravatar Lioncash2016-12-151-1/+2
| | |/ / / / | |/| | | |
* | | | | | Merge pull request #2330 from lioncash/pragmaGravatar Sebastian Valle2016-12-152-0/+4
|\ \ \ \ \ \
| * | | | | | core: Add missing #pragma once directives where applicableGravatar Lioncash2016-12-152-0/+4
| |/ / / / /
* / / / / / act: Fix docstring typoGravatar Lioncash2016-12-151-1/+1
|/ / / / /
* | | | | Merge pull request #2314 from mailwl/accountGravatar bunnei2016-12-157-6/+38
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | Service/ACT: move ACT services to folderGravatar mailwl2016-12-147-6/+38
* | | | | Merge pull request #2249 from Subv/sessions_v3Gravatar Yuri Kunde Schlesner2016-12-1423-168/+586
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | Fixed the codestyle to match our clang-format rules.Gravatar Subv2016-12-1416-68/+108
| * | | | Moved the HLE command buffer translation task to ServerSession instead of the...Gravatar Subv2016-12-096-47/+38
| * | | | Kernel/IPC: Small codestyle cleanupGravatar Subv2016-12-092-3/+1
| * | | | Added a framework for partially handling Session disconnections.Gravatar Subv2016-12-088-9/+67
| * | | | Use std::move where appropriate.Gravatar Subv2016-12-0811-177/+186
| * | | | Return an error code when connecting to a saturated port.Gravatar Subv2016-12-055-7/+20
| * | | | HLE: Use a member variable instead of a virtual function to retrieve the max ...Gravatar Subv2016-12-055-8/+18
| * | | | Split SessionRequestHandler::HandleSyncRequest into HandleSyncRequest, Transl...Gravatar Subv2016-12-056-22/+59