| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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. | |||
| 2015-05-20 | Kernel: Move reschedules from SVCs to actual mechanisms that reschedule. | bunnei | |
| 2015-05-18 | Merge pull request #772 from lioncash/warn | bunnei | |
| core/video_core: Fix a few warnings when compiling on MSVC. | |||
| 2015-05-14 | Core/ResourceLimits: Implemented the basic structure of ResourceLimits. | Subv | |
| Implemented svcs GetResourceLimit, GetResourceLimitCurrentValues and GetResourceLimitLimitValues. Note that the resource limits do not currently keep track of used objects, since we have no way to distinguish between an object created by the application, and an object created by some HLE module once we're inside Kernel::T::Create. | |||
| 2015-05-15 | Memmap: Re-organize memory function in two files | Yuri Kunde Schlesner | |
| memory.cpp/h contains definitions related to acessing memory and configuring the address space mem_map.cpp/h contains higher-level definitions related to configuring the address space accoording to the kernel and allocating memory. | |||
| 2015-05-14 | process: Get rid of warnings | Lioncash | |
| Sign mismatches and "forcing value to bool" warnings. | |||
| 2015-05-14 | thread: Fix a conditional check in Reschedule | Lioncash | |
| 2015-05-11 | Merge pull request #748 from Subv/tls_max | bunnei | |
| Core/Memory: Add TLS support for creating up to 300 threads | |||
| 2015-05-11 | Merge pull request #751 from yuriks/idle-thread | bunnei | |
| Thread: Remove the idle thread | |||
| 2015-05-11 | Merge pull request #757 from Subv/scheduling | bunnei | |
| Core/Scheduling: Prepare the new priority in the thread queue when svcSetPriority is called | |||
| 2015-05-11 | Thread: Remove the idle thread | Yuri Kunde Schlesner | |
| Instead just use nullptr to represent no thread is active. | |||
| 2015-05-11 | Core/Memory: Add TLS support for creating up to 300 threads | Subv | |
| 2015-05-11 | Merge pull request #750 from Subv/process_svc | Yuri Kunde Schlesner | |
| Core/HLE: Implemented the SVCs GetProcessId and GetProcessIdOfThread | |||
