| Commit message (Expand) | Author | Files | Lines |
2021-05-06 | hle: kernel: Migrate to KHandleTable. | bunnei | 1 | -125/+0 |
2021-05-06 | hle: kernel: Rename Process to KProcess. | bunnei | 1 | -1/+1 |
2021-05-06 | hle: kernel: HandleTable: Remove deprecated APIs. | bunnei | 1 | -68/+9 |
2021-05-06 | hle: kernel: Migrate KTransferMemory to KAutoObject. | bunnei | 1 | -1/+2 |
2021-05-06 | hle: kernel: Migrate KSession, KClientSession, and KServerSession to KAutoObject. | bunnei | 1 | -1/+4 |
2021-05-06 | hle: kernel: svc_results: Update naming.. | bunnei | 1 | -2/+2 |
2021-05-06 | hle: kernel: Migrate KReadableEvent and KWritableEvent to KAutoObject. | bunnei | 1 | -1/+3 |
2021-05-06 | hle: kernel: Migrate KEvent to KAutoObject. | bunnei | 1 | -0/+1 |
2021-05-06 | hle: kernel: Migrate KSharedMemory to KAutoObject. | bunnei | 1 | -4/+16 |
2021-05-06 | hle: kernel: Migrate KProcess to KAutoObject. | bunnei | 1 | -5/+5 |
2021-05-06 | hle: kernel: Migrate more of KThread to KAutoObject. | bunnei | 1 | -7/+41 |
2021-02-13 | kernel: Unify result codes (#5890) | Chloe | 1 | -5/+5 |
2021-01-29 | core: hle: kernel: object: Implement Finalize() virtual method. | bunnei | 1 | -0/+4 |
2021-01-29 | core: hle: kernel: Rename Thread to KThread. | bunnei | 1 | -1/+1 |
2020-12-06 | hle: kernel: Rewrite scheduler implementation based on Mesopshere. | bunnei | 1 | -2/+2 |
2020-10-21 | Revert "core: Fix clang build" | bunnei | 1 | -1/+1 |
2020-10-18 | core: Fix clang build | Lioncash | 1 | -1/+1 |
2020-10-13 | core/CMakeLists: Make some warnings errors | Lioncash | 1 | -1/+1 |
2020-07-15 | kernel/handle_table: Remove usages of the global system instance | Lioncash | 1 | -4/+5 |
2020-07-15 | kernel/thread: Remove global GetCurrentThread() | Lioncash | 1 | -1/+2 |
2020-04-29 | kernel: Don't fail silently | David Marcec | 1 | -0/+2 |
2019-11-25 | kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. (#3154) | bunnei | 1 | -5/+5 |
2019-10-06 | core: Remove Core::CurrentProcess() | Lioncash | 1 | -1/+1 |
2019-02-25 | kernel/handle_table: Make local variables as const where applicable | Lioncash | 1 | -4/+5 |
2019-02-25 | kernel/handle_table: Allow process capabilities to limit the handle table size | Lioncash | 1 | -5/+21 |
2019-02-25 | kernel/handle-table: In-class initialize data members | Lioncash | 1 | -1/+0 |
2019-02-25 | kernel/handle_table: Resolve truncation warnings | Lioncash | 1 | -2/+2 |
2018-12-04 | kernel/handle_table: Amend reference to CTR-OS in Create() | Lioncash | 1 | -2/+3 |
2018-11-22 | kernel/handle_table: Move private static functions into the cpp file | Lioncash | 1 | -0/+9 |
2018-11-22 | kernel/handle_table: Default destructor in the cpp file | Lioncash | 1 | -0/+2 |
2018-09-15 | Port #4182 from Citra: "Prefix all size_t with std::" | fearlessTobi | 1 | -1/+1 |
2018-08-29 | kernel: Eliminate kernel global state | Lioncash | 1 | -2/+0 |
2018-08-25 | kernel/error: Add error code for the handle table being full | Lioncash | 1 | -1/+1 |
2018-08-02 | kernel: Move object class to its own source files | Lioncash | 1 | -1/+0 |
2018-07-03 | Rename logging macro back to LOG_* | James Rowe | 1 | -2/+2 |
2018-04-26 | kernel: Migrate logging macros to fmt-compatible ones | Lioncash | 1 | -2/+2 |
2018-03-14 | core: Move process creation out of global state. | bunnei | 1 | -1/+2 |
2018-01-25 | handle_table: Remove ConvertSessionToDomain. | bunnei | 1 | -10/+0 |
2018-01-21 | Format: Run the new clang format on everything | James Rowe | 1 | -1/+1 |
2017-12-29 | kernel: Fix implementation of ConvertSessionToDomain. | bunnei | 1 | -0/+10 |
2017-05-30 | Kernel: Move HandleTable to a separate file | Yuri Kunde Schlesner | 1 | -36/+2 |
2017-05-30 | Kernel: Move WaitObject to a separate file | Yuri Kunde Schlesner | 1 | -79/+0 |
2017-05-25 | Kernel: Centralize error definitions in errors.h | Yuri Kunde Schlesner | 1 | -0/+1 |
2017-01-05 | Kernel: Add some asserts to enforce the invariants in the scheduler. | Subv | 1 | -0/+8 |
2017-01-05 | Kernel: Remove a thread from all of its waiting objects' waiting_threads list when it is awoken. | Subv | 1 | -18/+4 |
2017-01-05 | Kernel: Remove Thread::wait_objects_index and use wait_objects to hold all the objects that a thread is waiting on. | Subv | 1 | -1/+7 |
2017-01-04 | Kernel/Mutex: Update a mutex priority when a thread stops waiting on it. | Subv | 1 | -8/+15 |
2017-01-04 | Kernel: Object ShouldWait and Acquire calls now take a thread as a parameter. | Subv | 1 | -8/+6 |
2016-12-16 | Kernel: remove object's waiting thread if it is dead | wwylele | 1 | -1/+2 |
2016-12-14 | Fixed the codestyle to match our clang-format rules. | Subv | 1 | -4/+5 |
2016-12-10 | Properly remove a thread from its wait_objects' waitlist when it is awoken by a timeout. | Subv | 1 | -1/+6 |
2016-12-09 | WaitSynch: Removed unused variables and reduced SharedPtr copies. | Subv | 1 | -10/+4 |
2016-12-07 | Use boost remove_erase_if instead of the erase-remove idiom | Subv | 1 | -2/+3 |
2016-12-07 | Improved the algorithm for GetHighestPriorityReadyThread. | Subv | 1 | -14/+13 |
2016-12-04 | Threading: Added some utility functions and const correctness. | Subv | 1 | -7/+6 |
2016-12-04 | Threading: Reworked the way our scheduler works. | Subv | 1 | -5/+54 |
2016-11-20 | Kernel/Loader: Grab the system mode from the NCCH ExHeader. | Subv | 1 | -4/+2 |
2016-09-22 | implement wait tree widget | wwylele | 1 | -0/+4 |
2016-09-21 | Use negative priorities to avoid special-casing the self-include | Yuri Kunde Schlesner | 1 | -1/+1 |
2016-09-21 | Remove empty newlines in #include blocks. | Emmanuel Gil Peyrot | 1 | -3/+1 |
2016-09-18 | Sources: Run clang-format on everything. | Emmanuel Gil Peyrot | 1 | -1/+2 |
2015-08-16 | Kernel: Add more infrastructure to support different memory layouts | Yuri Kunde Schlesner | 1 | -3/+16 |
2015-06-28 | Common: Cleanup key_map includes. | Emmanuel Gil Peyrot | 1 | -2/+0 |
2015-06-17 | kernel: Fix svcWaitSynch to always acquire requested wait objects. | bunnei | 1 | -18/+4 |
2015-05-15 | Core/ResourceLimits: Implemented the basic structure of ResourceLimits. | Subv | 1 | -0/+3 |
2015-05-12 | fixup! | Subv | 1 | -1/+3 |
2015-05-11 | Core/HLE: Implemented the SVCs GetProcessId and GetProcessIdOfThread | Subv | 1 | -2/+2 |
2015-05-09 | Kernel: Remove unused g_main_thread variable | Yuri Kunde Schlesner | 1 | -2/+0 |
2015-05-09 | Kernel: Remove g_program_id | Yuri Kunde Schlesner | 1 | -2/+0 |
2015-05-09 | Kernel: Introduce skeleton Process class to hold process data | Yuri Kunde Schlesner | 1 | -12/+2 |
2015-05-07 | Common: Remove common.h | Yuri Kunde Schlesner | 1 | -1/+2 |
2015-05-02 | Kernel: Properly initialize and shutdown all modules. | bunnei | 1 | -4/+7 |
2015-04-10 | Kernel: Fixed default thread priority. | bunnei | 1 | -1/+1 |
2015-02-12 | Build: Fixed some warnings | Subv | 1 | -2/+2 |
2015-02-11 | Asserts: break/crash program, fit to style guide; log.h->assert.h | archshift | 1 | -2/+2 |
2015-02-10 | Scheduler refactor Pt. 1 | Kevin Hartman | 1 | -5/+1 |
2015-02-03 | core: Fix some warnings on OSX | Lioncash | 1 | -1/+0 |
2015-02-02 | Kernel: Make WaitObjects share ownership of Threads waiting on them | Yuri Kunde Schlesner | 1 | -4/+4 |
2015-02-02 | Kernel: Fix bug in HandleTable::Close | Yuri Kunde Schlesner | 1 | -1/+1 |
2015-02-02 | Kernel: Remove Object::GetHandle (it's not used anymore :D) | Yuri Kunde Schlesner | 1 | -4/+1 |
2015-02-02 | Kernel: Introduce unique Object ids for debugging | Yuri Kunde Schlesner | 1 | -0/+2 |
2015-01-22 | Kernel: Renamed some functions for clarity. | bunnei | 1 | -1/+1 |
2015-01-22 | Session: Change to a WaitObject. | bunnei | 1 | -1/+1 |
2015-01-22 | Kernel: Reschedule on SignalEvent and SendSyncRequest, fix some bugs. | bunnei | 1 | -1/+1 |
2015-01-22 | AddressArbiter: Changed to Kernel::Object, big cleanup, removed code that made no sense. | bunnei | 1 | -1/+1 |
2015-01-22 | Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks. | bunnei | 1 | -2/+4 |
2015-01-22 | WaitSynchronizationN: Implement return values | bunnei | 1 | -2/+2 |
2015-01-22 | WaitObject: Added RemoveWaitingThread, fixed a bug, and cleanup. | bunnei | 1 | -3/+10 |
2015-01-22 | Kernel: Added WaitObject and changed "waitable" objects inherit from it. | bunnei | 1 | -0/+26 |
2015-01-09 | Kernel: Start using boost::intrusive_ptr for lifetime management | Yuri Kunde Schlesner | 1 | -13/+10 |
2015-01-09 | Kernel: Don't re-assign object's handle when duplicating one | Yuri Kunde Schlesner | 1 | -1/+2 |
2015-01-09 | Thread: Reduce use of Handles and move some funcs to inside the class. | Yuri Kunde Schlesner | 1 | -1/+1 |
2015-01-09 | Kernel: Move Thread's definition to the header file | Yuri Kunde Schlesner | 1 | -2/+1 |
2015-01-09 | Move ThreadContext to core/core.h and deal with the fallout | Yuri Kunde Schlesner | 1 | -0/+1 |
2015-01-09 | SVC: Implemented the Timer service calls. | Subv | 1 | -1/+3 |
2015-01-08 | Threads: Use a dummy idle thread when no other are ready. | Subv | 1 | -0/+2 |
2014-12-28 | Kernel: New handle manager | Yuri Kunde Schlesner | 1 | -51/+67 |
2014-12-28 | Rename ObjectPool to HandleTable | Yuri Kunde Schlesner | 1 | -10/+10 |
2014-12-21 | License change | purpasmart96 | 1 | -2/+2 |
2014-12-18 | Filesystem/Archives: Implemented the SaveData archive | Subv | 1 | -0/+1 |
2014-12-16 | HLE: Rename namespaces to match move & fix initialization order | Yuri Kunde Schlesner | 1 | -5/+0 |
2014-12-16 | HLE: Move kernel/archive.* to service/fs/ | Yuri Kunde Schlesner | 1 | -1/+1 |
2014-12-13 | Convert old logging calls to new logging macros | Yuri Kunde Schlesner | 1 | -4/+4 |
2014-12-04 | kernel: Shorten GetCount | Lioncash | 1 | -6/+3 |
2014-12-04 | kernel: Make some functions const | Lioncash | 1 | -2/+2 |
2014-11-19 | Remove trailing spaces in every file but the ones imported from SkyEye, AOSP or generated | Emmanuel Gil Peyrot | 1 | -3/+3 |
2014-09-15 | Core: Get rid of unnecessary switch statement in Kernel | Lioncash | 1 | -41/+2 |
2014-09-09 | core: Prune redundant includes | archshift | 1 | -2/+0 |
2014-08-19 | Core: Use std::array for managing kernel object space | Lioncash | 1 | -2/+1 |
2014-08-18 | Core: Alter the kernel string functions to use std::string instead of const char*. | Lioncash | 1 | -2/+2 |
2014-07-05 | Archive: Added Init/Shutdown methods to reset kernel archive state. | bunnei | 1 | -0/+3 |
2014-06-13 | Kernel: Removed unnecessary "#pragma once". | bunnei | 1 | -2/+0 |
2014-06-13 | Kernel: Added freeing of kernel objects on emulator shutdown. | bunnei | 1 | -0/+4 |
2014-06-13 | HLE: Updated all uses of NULL to nullptr (to be C++11 compliant) | bunnei | 1 | -1/+1 |
2014-06-05 | kernel: changed current default thread priority back to 0x30 - I think this is more correct | bunnei | 1 | -1/+1 |
2014-06-02 | kernel: changed main thread priority to default, updated Kernel::Reschedule to use PrepareReschedule | bunnei | 1 | -1/+2 |
2014-05-23 | kernel: refactored function naming to remove "__" prefix | bunnei | 1 | -5/+10 |
2014-05-21 | thread: moved threading calls to the Kernel namespace | bunnei | 1 | -3/+3 |
2014-05-21 | - created a Kernel namespace | bunnei | 1 | -25/+24 |
2014-05-16 | changed "UID" to "Handle" to be a little more consistent with CTR naming | bunnei | 1 | -5/+5 |
2014-05-15 | changed primary thread priority to 0x30 - this is typical, not 0x31 | bunnei | 1 | -1/+2 |
2014-05-14 | - added __KernelLoadExec function | bunnei | 1 | -0/+11 |
2014-05-10 | added initial kernel/thread modules | bunnei | 1 | -0/+142 |