| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-05-08 | Merge pull request #1766 from Subv/log_cpu | bunnei | |
| Kernel/Threading: Warn when a thread can be scheduled in the Syscore (Core 1) | |||
| 2016-05-07 | Kernel/Threading: Warn when a thread can be scheduled in the Syscore (Core 1). | Subv | |
| We do not currently implement any cores other than the AppCore (Core 0). | |||
| 2016-05-05 | Merge pull request #1762 from bunnei/global | bunnei | |
| hle: Get rid of direct global access to g_reschedule | |||
| 2016-04-05 | Merge pull request #1643 from MerryMage/make_unique | Mathew Maidment | |
| Common: Remove Common::make_unique, use std::make_unique | |||
| 2016-04-05 | Common: Remove Common::make_unique, use std::make_unique | MerryMage | |
| 2016-03-21 | session: Make helper functions constexpr | Lioncash | |
| 2016-03-21 | hle: Get rid of global access to g_reschedule | Lioncash | |
| This shouldn't be directly exposed if there's already a partial API that operates on it. We can just provide the rest of that API. | |||
| 2016-03-12 | svc: Move ResetType enum to the kernel event header | Lioncash | |
| 2016-03-12 | svc: Make ResetType an enum class | Lioncash | |
| 2016-03-05 | Memory: Do correct Phys->Virt address translation for non-APP linheap | Yuri Kunde Schlesner | |
| 2016-02-21 | AudioCore: Skeleton Implementation | MerryMage | |
| This commit: * Adds a new subproject, audio_core. * Defines structures that exist in DSP shared memory. * Hooks up various other parts of the emulator into audio core. This sets the foundation for a later HLE DSP implementation. | |||
| 2016-02-12 | BitField: Make trivially copyable and remove assignment operator | MerryMage | |
| 2016-01-30 | Memory: Implement MMIO | MerryMage | |
| 2016-01-14 | HLE/SVC: Implement UnmapMemoryBlock. | Subv | |
| This implementation will need to be (almost completely) changed when we implement multiprocess support. | |||
| 2015-12-29 | HLE/Timers: Reset OneShot timers when they are acquired instead of when ↵ | Subv | |
| they're triggered. Closes #1139 | |||
| 2015-12-27 | SVC: Fixed ArbitrateAddress to behave as it does on hardware. | Subv | |
| This was verified with hwtests that i plan to upload later on. | |||
| 2015-11-30 | Kernel: Implement svcGetSystemInfo | Yuri Kunde Schlesner | |
| This makes smealum/ctrulib@b96dd51d3349961189d4ab1bc2a5c45deff21c09 work with Citra. | |||
| 2015-10-06 | Silence -Wsign-compare warnings. | Rohit Nirmal | |
| 2015-09-16 | general: Silence some warnings when using clang | Lioncash | |
| 2015-09-10 | General: Fix up doxygen comments | Lioncash | |
| 2015-08-27 | Kernel: Fix wrong linear heap base on titles using newer kernels | Yuri Kunde Schlesner | |
| Typo which sneaked in through review on #1025 | |||
| 2015-08-26 | Kernel: Fix assertion failure when ControlMemory is called with size=0 | Yuri Kunde Schlesner | |
| 2015-08-26 | Core: Improve APT Shared Font hack | Yuri Kunde Schlesner | |
| Should fix invalid read loops in some games | |||
| 2015-08-16 | Kernel: Remove unused legacy heap MapBlock_* functions | Yuri Kunde Schlesner | |
| 2015-08-16 | Kernel: Implement svcGetProcessInfo in a basic way | Yuri Kunde Schlesner | |
| This also adds some basic memory usage accounting. These two types are used by Super Smash Bros. during startup. | |||
| 2015-08-16 | Kernel: Add more infrastructure to support different memory layouts | Yuri Kunde Schlesner | |
| This adds some structures necessary to support multiple memory regions in the future. It also adds support for different system memory types and the new linear heap mapping at 0x30000000. | |||
| 2015-08-16 | Move core/mem_map.{cpp,h} => core/hle/kernel/memory.{cpp,h} | Yuri Kunde Schlesner | |
| 2015-08-16 | Memory: Move address type conversion routines to memory.cpp/h | Yuri Kunde Schlesner | |
| These helpers aren't really part of the kernel, and mem_map.cpp/h is going to be moved there next. | |||
| 2015-08-16 | Process: Store kernel compatibility version during loading | Yuri Kunde Schlesner | |
| 2015-08-16 | Kernel: Properly implement ControlMemory FREE and COMMIT | Yuri Kunde Schlesner | |
| 2015-08-16 | VMManager: Introduce names for used ResultCodes | Yuri Kunde Schlesner | |
| 2015-08-16 | VMManager: Make LogLayout log level configurable as a parameter | Yuri Kunde Schlesner | |
| 2015-08-16 | VMManager: Change block offsets to size_t | Yuri Kunde Schlesner | |
| 2015-07-25 | dyncom: Rename armdefs.h to armstate.h | Lioncash | |
| 2015-07-20 | Kernel/Scheduling: Clean up a thread's wait_objects when its scheduled. | Subv | |
| They'll be reset if needed during the next svcWaitSynchronization call (if there's any pending) | |||
| 2015-07-17 | Ensure all kernel objects are released during shutdown | Yuri Kunde Schlesner | |
| This commit fixes several kernel object leaks. The most severe of them was threads not being removed from the private handle table used for CoreTiming events. This resulted in Threads never being released, which in turn held references to Process, causing CodeSets to never be freed when loading other applications. | |||
| 2015-07-12 | Merge pull request #921 from linkmauve/fix-applet | bunnei | |
| Fix applet includes using iwyu | |||
| 2015-07-12 | Kernel: Add CodeSet case to Object::IsWaitable | Yuri Kunde Schlesner | |
| 2015-07-12 | Core: Fix applet includes using iwyu. | Emmanuel Gil Peyrot | |
| 2015-07-11 | Core: Properly configure address space when loading a binary | Yuri Kunde Schlesner | |
| The code now properly configures the process image to match the loaded binary segments (code, rodata, data) instead of just blindly allocating a large chunk of dummy memory. | |||
| 2015-07-11 | Kernel: Remove unused member from Event | Yuri Kunde Schlesner | |
| 2015-06-28 | Core: Cleanup file_sys includes. | Emmanuel Gil Peyrot | |
| 2015-06-28 | Core: Cleanup core includes. | Emmanuel Gil Peyrot | |
| 2015-06-28 | Common: Cleanup key_map includes. | Emmanuel Gil Peyrot | |
| 2015-06-22 | Add helpers to create IPC command buffer headers and descriptors | Yuri Kunde Schlesner | |
| 2015-06-16 | kernel: Fix svcWaitSynch to always acquire requested wait objects. | bunnei | |
| 2015-05-29 | Merge pull request #810 from yuriks/memmap | Yuri Kunde Schlesner | |
| Kernel: Add VMManager to manage process address spaces | |||
| 2015-05-29 | Remove every trailing whitespace from the project (but externals). | Emmanuel Gil Peyrot | |
| 2015-05-27 | Kernel: Add VMManager to manage process address spaces | Yuri Kunde Schlesner | |
| This enables more dynamic management of the process address space, compared to just directly configuring the page table for major areas. This will serve as the foundation upon which the rest of the Kernel memory management functions will be built. | |||
| 2015-05-21 | Kernel: Fix a warning introduced with ResourceLimit, and remove the fallback ↵ | Emmanuel Gil Peyrot | |
| code to prevent it from happening again. | |||
