| Commit message (Expand) | Author | Files | Lines |
2020-11-29 | hle: kernel: thread: Remove unused "Running" state. | bunnei | 2 | -6/+0 |
2020-11-29 | core: arm: Implement InvalidateCacheRange for CPU cache invalidation. | bunnei | 4 | -5/+21 |
2020-11-29 | hle: kernel: time_manager: Avoid a crash on process exit. | bunnei | 1 | -1/+4 |
2020-11-29 | hle: kernel: AddressArbiter: Remove unused code. | bunnei | 2 | -9/+0 |
2020-11-29 | hle: kernel: SynchronizationObject: Use atomic_bool for is_signaled. | bunnei | 1 | -1/+2 |
2020-11-29 | common: fiber: Use boost::context instead of native fibers on Windows. | bunnei | 1 | -1/+1 |
2020-11-29 | hle: kernel: multicore: Replace n-JITs impl. with 4 JITs. | bunnei | 8 | -57/+97 |
2020-11-23 | svc: Remove unnecessary [[maybe_unused]] tag | Lioncash | 1 | -1/+1 |
2020-11-08 | ipc_helpers: Remove usage of the global system instance | Lioncash | 1 | -0/+6 |
2020-11-04 | core: Remove usage of unicorn | Lioncash | 2 | -28/+5 |
2020-10-29 | kernel/process: Add missing <ctime> include | Morph | 1 | -0/+1 |
2020-10-27 | hle/kernel: Remove unused registered_core_threads to fix data races | ReinUsesLisp | 1 | -5/+0 |
2020-10-27 | kernel: Use the current time as the default RNG seed | lat9nq | 1 | -1/+1 |
2020-10-21 | Revert "core: Fix clang build" | bunnei | 18 | -114/+74 |
2020-10-21 | kernel: Fix build with recent compiler flag changes | Lioncash | 1 | -4/+8 |
2020-10-18 | core: Fix clang build | Lioncash | 18 | -74/+114 |
2020-10-13 | kernel: Implement host thread register methods without locking | ReinUsesLisp | 1 | -28/+38 |
2020-10-13 | core/CMakeLists: Make some warnings errors | Lioncash | 2 | -6/+6 |
2020-09-14 | kernel: Remove all dependencies on the global system instance | Lioncash | 5 | -11/+20 |
2020-08-26 | hle/scheduler: Fix data race in is_context_switch_pending | ReinUsesLisp | 1 | -2/+6 |
2020-08-26 | hle/kernel: Fix data race in GetCurrentHostThreadID | ReinUsesLisp | 1 | -1/+2 |
2020-08-14 | kernel/scheduler: Mark SchedulerLock constructor as nodiscard | Lioncash | 1 | -1/+1 |
2020-08-13 | General: Tidy up clang-format warnings part 2 | Lioncash | 2 | -30/+38 |
2020-08-05 | system_control: Make functions internally linked where applicable | Lioncash | 2 | -15/+11 |
2020-08-05 | kernel: Remove unused variables | Lioncash | 2 | -18/+11 |
2020-08-05 | scheduler: Resolve sign conversion warning | Lioncash | 1 | -1/+2 |
2020-08-05 | address_arbiter: Resolve sign conversion warning | Lioncash | 1 | -1/+1 |
2020-08-03 | ipc: Allow all trivially copyable objects to be passed directly into WriteBuffer (#4465) | David | 1 | -14/+16 |
2020-07-28 | core_timing: Make use of uintptr_t to represent user_data | Lioncash | 3 | -8/+10 |
2020-07-16 | kernel/thread: Remove unimplemented function prototype | Lioncash | 1 | -2/+0 |
2020-07-16 | kernel: Remove unused variables | Lioncash | 3 | -7/+2 |
2020-07-16 | kernel: Add missing include | Lioncash | 1 | -0/+1 |
2020-07-16 | cpu_manager: Mark function getters as static | Lioncash | 3 | -7/+8 |
2020-07-16 | core_timing: Make TimedCallback take std::chrono::nanoseconds | Lioncash | 3 | -3/+3 |
2020-07-16 | core_timing: Make use of std::chrono with ScheduleEvent | Lioncash | 3 | -5/+8 |
2020-07-15 | kernel/process: Move name and system context to the bottom of the member list | Lioncash | 1 | -6/+6 |
2020-07-15 | kernel/handle_table: Remove usages of the global system instance | Lioncash | 4 | -8/+15 |
2020-07-15 | kernel/thread: Remove global GetCurrentThread() | Lioncash | 3 | -23/+7 |
2020-07-13 | memory_layout: Remove unused data member | Lioncash | 1 | -2/+0 |
2020-07-13 | address_space_info: Use type alias to simplify code | Lioncash | 1 | -14/+13 |
2020-07-13 | address_space_info: Make use of designated initializers | Lioncash | 2 | -46/+27 |
2020-07-13 | kernel/scheduler: Use std::mutex instead of spin lock | ReinUsesLisp | 1 | -1/+1 |
2020-07-10 | configuration: implement per-game configurations (#4098) | lat9nq | 1 | -1/+1 |
2020-06-29 | core_timing,scheduler: Use std::scoped_lock when possible | ReinUsesLisp | 1 | -11/+10 |
2020-06-28 | Core/Common: Address Feedback. | Fernando Sahmkow | 5 | -16/+17 |
2020-06-27 | SVC: Implement 32-bits wrappers and update Dynarmic. | Fernando Sahmkow | 2 | -30/+273 |
2020-06-27 | SVC: Add GetCurrentProcessorNumber32, CreateTransferMemory32, SetMemoryAttribute32 | Fernando Sahmkow | 2 | -6/+39 |
2020-06-27 | SVC: Add GetThreadPriority32 & SetThreadPriority32 | Fernando Sahmkow | 2 | -2/+30 |
2020-06-27 | Common/Kernel: Corrections and small bug fixing. | Fernando Sahmkow | 1 | -2/+2 |
2020-06-27 | Kernel: Correct Host Context on Threads and Scheduler. | Fernando Sahmkow | 4 | -11/+11 |
2020-06-27 | Clang Format. | Fernando Sahmkow | 4 | -12/+11 |
2020-06-27 | General: Cleanup legacy code. | Fernando Sahmkow | 8 | -253/+5 |
2020-06-27 | Kernel/svcBreak: Implement CacheInvalidation for Singlecore and correct svcBreak. | Fernando Sahmkow | 2 | -3/+13 |
2020-06-27 | HLE_IPC: Correct HLE Event behavior on timeout. | Fernando Sahmkow | 3 | -1/+19 |
2020-06-27 | SingleCore: Improve Cycle timing Behavior and replace mutex in global scheduler for spinlock. | Fernando Sahmkow | 2 | -2/+3 |
2020-06-27 | SingleCore: Use Cycle Timing instead of Host Timing. | Fernando Sahmkow | 2 | -4/+13 |
2020-06-27 | Scheduler: Correct Reload/Unload | Fernando Sahmkow | 2 | -3/+5 |
2020-06-27 | Thread: Release the ARM Interface on exitting. | Fernando Sahmkow | 3 | -1/+8 |
2020-06-27 | General: Move ARM_Interface into Threads. | Fernando Sahmkow | 8 | -119/+88 |
2020-06-27 | Core: Refactor ARM Interface. | Fernando Sahmkow | 3 | -24/+43 |
2020-06-27 | SVC/ARM: Correct svcSendSyncRequest and cache ticks on arm interface. | Fernando Sahmkow | 1 | -1/+1 |
2020-06-27 | SingleCore: Move Host Timing from a sepparate thread to main cpu thread. | Fernando Sahmkow | 2 | -1/+10 |
2020-06-27 | ARM: Addapt to new Exclusive Monitor Interface. | Fernando Sahmkow | 2 | -9/+4 |
2020-06-27 | Scheduler: Correct yielding interaction with SetThreadActivity. | Fernando Sahmkow | 1 | -0/+15 |
2020-06-27 | General: Fix microprofile on dynarmic/svc, fix wait tree showing which threads were running. | Fernando Sahmkow | 5 | -3/+51 |
2020-06-27 | General: Fix Stop function | Fernando Sahmkow | 2 | -3/+20 |
2020-06-27 | Kernel: Rewind on SVC change. | Fernando Sahmkow | 3 | -5/+16 |
2020-06-27 | Kernel: Preempt Single core on redudant yields. | Fernando Sahmkow | 5 | -19/+40 |
2020-06-27 | CPU_Manager: Unload/Reload threads on preemption on SingleCore | Fernando Sahmkow | 2 | -0/+52 |
2020-06-27 | Synchronization: Correct wide Assertion. | Fernando Sahmkow | 1 | -2/+4 |
2020-06-27 | General: Initial Setup for Single Core. | Fernando Sahmkow | 2 | -0/+22 |
2020-06-27 | Scheduler: Set last running time on thread. | Fernando Sahmkow | 2 | -4/+2 |
2020-06-27 | Kernel: Corrections to TimeManager, Scheduler and Mutex. | Fernando Sahmkow | 3 | -5/+5 |
2020-06-27 | Kernel: Fixes, corrections and asserts to scheduler and different svcs. | Fernando Sahmkow | 8 | -38/+38 |
2020-06-27 | Scheduler: Correct yields. | Fernando Sahmkow | 2 | -7/+25 |
2020-06-27 | Mutex: Revert workaround due to poor exclusive memory. | Fernando Sahmkow | 1 | -9/+2 |
2020-06-27 | ARM/Memory: Correct Exclusive Monitor and Implement Exclusive Memory Writes. | Fernando Sahmkow | 4 | -9/+10 |
2020-06-27 | SVC: WaitSynchronization add Termination Pending Result. | Fernando Sahmkow | 2 | -1/+5 |
2020-06-27 | Scheduler: Remove arm_interface lock and a few corrections. | Fernando Sahmkow | 1 | -7/+3 |
2020-06-27 | SVC: Correct SetThreadActivity. | Fernando Sahmkow | 4 | -38/+59 |
2020-06-27 | SCC: Small corrections to CancelSynchronization | Fernando Sahmkow | 3 | -2/+14 |
2020-06-27 | Scheduler: Correct locking for hle threads. | Fernando Sahmkow | 1 | -1/+2 |
2020-06-27 | Scheduler: Fix HLE Threads on guard | Fernando Sahmkow | 1 | -4/+6 |
2020-06-27 | Scheduler: Protect on closed threads. | Fernando Sahmkow | 1 | -7/+17 |
2020-06-27 | Scheduler: Correct assert. | Fernando Sahmkow | 1 | -4/+2 |
2020-06-27 | Core: Correct rebase. | Fernando Sahmkow | 1 | -6/+5 |
2020-06-27 | Scheduler: Release old thread fiber before trying to switch to the next thread fiber. | Fernando Sahmkow | 2 | -11/+35 |
2020-06-27 | Mutex: Correct Result writting to clear exclusivity. | Fernando Sahmkow | 1 | -3/+11 |
2020-06-27 | SVC: Correct svcWaitForAddress and svcSignalToAddress. | Fernando Sahmkow | 4 | -68/+161 |
2020-06-27 | Scheduler: Correct Select Threads Step 2. | Fernando Sahmkow | 1 | -0/+1 |
2020-06-27 | Kernel: Corrections to Scheduling. | Fernando Sahmkow | 3 | -14/+15 |
2020-06-27 | Kernel: Correct Signal on Thread Death and Setup Sync Objects on Thread for Debugging | Fernando Sahmkow | 3 | -15/+17 |
2020-06-27 | Core: Correct HLE Event Callbacks and other issues. | Fernando Sahmkow | 5 | -37/+39 |
2020-06-27 | Process: Protect TLS region and Modules. | Fernando Sahmkow | 1 | -0/+4 |
2020-06-27 | General: Add Asserts | Fernando Sahmkow | 3 | -0/+20 |
2020-06-27 | General: Add better safety for JIT use. | Fernando Sahmkow | 2 | -1/+8 |
2020-06-27 | SVC: Correct races on physical core switching. | Fernando Sahmkow | 1 | -5/+4 |
2020-06-27 | SVC: Add locks to the memory management. | Fernando Sahmkow | 1 | -0/+21 |
2020-06-27 | SVC: Correct WaitSynchronization, WaitProcessWideKey, SignalProcessWideKey. | Fernando Sahmkow | 9 | -33/+84 |
2020-06-27 | SVC: Cleanup old methods. | Fernando Sahmkow | 1 | -13/+9 |
2020-06-27 | CPU_Manager: Reconfigre guest threads for dynamrmic downsides | Fernando Sahmkow | 2 | -0/+5 |
2020-06-27 | SVC: Correct SendSyncRequest. | Fernando Sahmkow | 7 | -52/+115 |
2020-06-27 | SVC: Correct ArbitrateUnlock | Fernando Sahmkow | 3 | -33/+37 |
2020-06-27 | SVC: Correct SignalEvent, ClearEvent, ResetSignal, WaitSynchronization, CancelSynchronization, ArbitrateLock | Fernando Sahmkow | 8 | -90/+134 |
2020-06-27 | SVC: Remove global HLE Lock. | Fernando Sahmkow | 1 | -3/+0 |
2020-06-27 | SVC: Correct GetThreadPriority, SetThreadPriority, GetThreadCoreMask, SetThreadCoreMask, GetCurrentProcessorNumber | Fernando Sahmkow | 3 | -15/+11 |
2020-06-27 | SVC: Correct CreateThread, StartThread, ExitThread, SleepThread. | Fernando Sahmkow | 3 | -37/+31 |
2020-06-27 | General: Recover Prometheus project from harddrive failure
| Fernando Sahmkow | 11 | -344/+679 |
2020-06-25 | memory_manager: Remove useless assertion | David Marcec | 1 | -1/+0 |
2020-06-24 | Mark invalid IPC buffers as ASSERT_OR_EXECUTE_MSG | David Marcec | 1 | -25/+22 |
2020-06-18 | memory_manager: Explicitly specifcy std::min<size_t> | MerryMage | 1 | -2/+2 |
2020-06-10 | kernel: Account for system resource size for memory usage | David Marcec | 1 | -2/+4 |
2020-06-04 | Downgrade "handle not signaled" error to trace | David Marcec | 1 | -1/+1 |
2020-05-29 | kernel: ResourceLimit::Reserve remove useless while loop | David Marcec | 1 | -5/+1 |
2020-05-03 | kernel/memory: Remove #pragma once within cpp file | Lioncash | 1 | -2/+0 |
2020-05-03 | kernel/memory: Remove unused includes | Lioncash | 7 | -8/+1 |
2020-05-03 | kernel/memory: Remove unused variables in memory_block_manager | Lioncash | 1 | -3/+0 |
2020-05-03 | kernel/memory: Make use of std::array consistently in address_space_info | Lioncash | 1 | -6/+6 |
2020-05-03 | kernel/memory: Resolve -Wshadow warnings | Lioncash | 1 | -4/+4 |
2020-05-03 | kernel/memory: Amend potential encoding warnings | Lioncash | 6 | -12/+12 |
2020-05-03 | hle_ipc: Eliminate core memory globals | Lioncash | 3 | -10/+16 |
2020-05-02 | readable_event: Remove unnecessary semicolon in Signal() | Lioncash | 1 | -4/+6 |
2020-04-29 | kernel: Don't fail silently | David Marcec | 7 | -0/+51 |
2020-04-28 | kernel: Bad GetInfo ids should not be marked as stubs | David Marcec | 1 | -2/+2 |
2020-04-24 | physical_core: Make use of std::make_unique instead of std::make_shared in ctor | Lioncash | 1 | -1/+3 |
2020-04-24 | shared_memory: Amend doxygen reference | Lioncash | 2 | -5/+5 |
2020-04-24 | svc: Re-add MapProcessCodeMemory/UnmapProcessCodeMemory | Lioncash | 1 | -2/+138 |
2020-04-23 | svc: Remove unused variable | Lioncash | 1 | -3/+0 |
2020-04-23 | page_table: Remove unused captures | Lioncash | 1 | -2/+2 |
2020-04-23 | kernel: memory: Improve implementation of device shared memory. (#3707) | bunnei | 5 | -3/+105 |
2020-04-19 | thread: FPCR.FZ is likely not 1 | MerryMage | 1 | -2/+1 |
2020-04-18 | memory/slab_heap: Make use of static_cast over reinterpret_cast | Lioncash | 1 | -2/+2 |
2020-04-17 | core: hle: Address various feedback & code cleanup. | bunnei | 9 | -236/+139 |
2020-04-17 | memory: Add copyright notice for Atmosphere where applicable. | bunnei | 6 | -0/+18 |
2020-04-17 | kernel: Remove old VMManager class. | bunnei | 2 | -1971/+0 |
2020-04-17 | kernel: memory: page_table: Simplify GetPhysicalAddr impl. | bunnei | 2 | -5/+3 |
2020-04-17 | kernel: svc: Updates for new VMM. | bunnei | 1 | -488/+116 |
2020-04-17 | kernel: process: Updates for new VMM. | bunnei | 2 | -79/+151 |
2020-04-17 | kernel: resource_limit: Reserve physical memory. | bunnei | 1 | -1/+6 |
2020-04-17 | kernel: Initialize memory layout for new VMM. | bunnei | 2 | -0/+159 |
2020-04-17 | core: system: Rename GetDeviceManager -> DeviceManager. | bunnei | 1 | -1/+1 |
2020-04-17 | kernel: transfer_memory: Refactor for new VMM. | bunnei | 2 | -130/+16 |
2020-04-17 | kernel: shared_memory: Refactor for new VMM. | bunnei | 2 | -220/+58 |
2020-04-17 | kernel: errors: Add ERR_OUT_OF_RESOURCES. | bunnei | 1 | -0/+1 |
2020-04-17 | kernel: process_capability: Update to use Memory::PageTable. | bunnei | 2 | -23/+25 |
2020-04-17 | kernel: memory: Add PageTable class, to manage process address space. | bunnei | 2 | -0/+1508 |
2020-04-17 | kernel: memory: Add MemoryLayout class, to build physical memory layout. | bunnei | 1 | -0/+73 |
2020-04-17 | kernel: memory: Add MemoryManager class, to manage page heaps. | bunnei | 2 | -0/+274 |
2020-04-17 | kernel: memory: Add MemoryBlockManager class, to manage memory blocks. | bunnei | 2 | -0/+254 |
2020-04-17 | kernel: memory: Add PageHeap class, to manage a heap of pages. | bunnei | 2 | -0/+481 |
2020-04-17 | kernel: memory: Add PageLinkedList class, to manage a list of pages. | bunnei | 1 | -0/+93 |
2020-04-17 | kernel: memory: Add system_control code, which will be used for ASLR support. | bunnei | 2 | -0/+59 |
2020-04-17 | physical_memory: Add missing include for <vector>. | bunnei | 1 | -0/+2 |
2020-04-17 | kernel: memory: Add MemoryBlock class, for managing memory blocks and their state. | bunnei | 1 | -0/+315 |
2020-04-17 | kernel: memory: Add memory_types.h, for things that are commonly used in memory code. | bunnei | 1 | -0/+18 |
2020-04-17 | kernel: memory: Add SlabHeap class, for managing memory heaps. | bunnei | 1 | -0/+161 |
2020-04-17 | kernel: memory: Add AddressSpaceInfo class, for managing the memory address space. | bunnei | 2 | -0/+164 |
2020-04-17 | core: memory: Move to Core::Memory namespace. | bunnei | 8 | -25/+29 |
2020-04-17 | core: kernel: Add svc_types header to include SVC-specific types. | bunnei | 2 | -0/+69 |
2020-04-17 | core: kernel: Move SVC to its own namesapce. | bunnei | 2 | -6/+6 |
2020-04-17 | kernel: resource_limit: Improvements to implementation. | bunnei | 2 | -12/+50 |
2020-04-17 | process: SetupMainThread: Zero out argument on process start. | bunnei | 1 | -0/+2 |
2020-04-17 | hle_ipc: Remove std::size_t casts where applicable | Lioncash | 2 | -21/+23 |
2020-04-16 | CMakeLists: Specify -Wextra on linux builds | Lioncash | 1 | -12/+12 |
2020-04-15 | CMakeLists: Make -Wreorder a compile-time error | Lioncash | 1 | -1/+1 |
2020-04-15 | kernel/thread: Resolve -Wswitch warnings | Lioncash | 1 | -0/+2 |
2020-03-03 | core: hle: Implement separate A32/A64 SVC interfaces. | bunnei | 2 | -107/+380 |
2020-03-03 | core: Implement separate A32/A64 ARM interfaces. | bunnei | 8 | -36/+73 |
2020-02-22 | Scheduler: Inline global scheduler in Scheduler Lock. | Fernando Sahmkow | 1 | -4/+2 |
2020-02-22 | Kernel: Correct pending feedback. | Fernando Sahmkow | 1 | -3/+4 |
2020-02-22 | Kernel: Address Feedback. | Fernando Sahmkow | 6 | -30/+47 |
2020-02-22 | Kernel: Implement Scheduler locks | Fernando Sahmkow | 2 | -0/+89 |
2020-02-22 | Kernel: Implement Time Manager. | Fernando Sahmkow | 4 | -1/+96 |
2020-02-22 | Kernel: Rename ThreadCallbackHandleTable and Setup Thread Ids on Kernel. | Fernando Sahmkow | 4 | -24/+105 |
2020-02-22 | Kernel: Make global scheduler depend on KernelCore | Fernando Sahmkow | 4 | -8/+24 |
2020-02-14 | Core: Address Feedback | Fernando Sahmkow | 5 | -16/+27 |
2020-02-12 | address_arbiter: Collapse loops in InsertThread() and RemoveThread() | Lioncash | 1 | -19/+17 |
2020-02-12 | address_arbiter: Simplify GetThreadsWaitingOnAddress() | Lioncash | 2 | -10/+9 |
2020-02-12 | kernel/thread: Remove trivial usages of the global system accessor | Lioncash | 1 | -2/+2 |
2020-02-12 | Core: Set all hardware emulation constants in a single file. | Fernando Sahmkow | 3 | -19/+21 |
2020-02-11 | Kernel: Refactor synchronization to better match RE | Fernando Sahmkow | 22 | -80/+210 |
2020-02-11 | Kernel: Change WaitObject to Synchronization object. In order to better reflect RE. | Fernando Sahmkow | 19 | -71/+76 |
2020-02-06 | kernel: transfer_memory: Properly reserve and reset memory region. | bunnei | 5 | -40/+116 |
2020-02-06 | wait_object: Make wait behavior only require one object to signal. | Zach Hilman | 1 | -11/+2 |
2020-02-06 | hle_ipc: Add error checking to read/write buffer access. | bunnei | 1 | -8/+42 |
2020-01-31 | kernel/physical_core: Make use of std::unique_ptr | Lioncash | 2 | -4/+10 |
2020-01-31 | kernel/physical_core: Remove unused kernel reference member variable | Lioncash | 3 | -11/+7 |
2020-01-27 | System: Address Feedback | Fernando Sahmkow | 4 | -10/+20 |
2020-01-26 | Kernel: Remove a few global instances from the kernel. | Fernando Sahmkow | 2 | -2/+2 |
2020-01-26 | Core: Refactor CpuCoreManager to CpuManager and Cpu to Core Manager. | Fernando Sahmkow | 5 | -6/+2 |
2020-01-26 | ArmInterface: Delegate Exclusive monitor factory to exclusive monitor interfasce. | Fernando Sahmkow | 1 | -15/+2 |
2020-01-25 | Core: Refactor CPU Management. | Fernando Sahmkow | 4 | -12/+127 |
2020-01-24 | Kernel: Implement Physical Core. | Fernando Sahmkow | 2 | -0/+81 |
2020-01-18 | core/memory: Create a special MapMemoryRegion for physical memory. | Markus Wick | 2 | -3/+5 |
2020-01-18 | core/hle: Simplify PhysicalMemory usage in vm_manager. | Markus Wick | 1 | -23/+11 |
2020-01-11 | core/kernel: Fix GetTotalPhysicalMemoryUsed. | Markus Wick | 1 | -2/+2 |
2019-12-11 | Kernel: Correct behavior of Address Arbiter threads. (#3165) | Fernando Sahmkow | 3 | -24/+67 |
2019-12-11 | kernel/svc: Correct function signature of SignalProcessWideKey | Lioncash | 2 | -9/+6 |
2019-12-08 | kernel: Remove unnecessary includes | Lioncash | 15 | -11/+17 |
2019-12-08 | kernel/svc: Provide implementations for svcDumpInfo/svcDumpInfoNew | Lioncash | 2 | -2/+24 |
2019-12-05 | CpuCore: Clear exclusive state after doing a run in dynarmic. | Fernando Sahmkow | 1 | -1/+0 |
2019-11-28 | kernel: Implement a more accurate IPC dispatch. | bunnei | 12 | -142/+214 |
2019-11-27 | core/memory; Migrate over SetCurrentPageTable() to the Memory class | Lioncash | 1 | -7/+11 |
2019-11-27 | core/memory: Migrate over Write{8, 16, 32, 64, Block} to the Memory class | Lioncash | 4 | -21/+25 |
2019-11-27 | core/memory: Migrate over Read{8, 16, 32, 64, Block} to the Memory class | Lioncash | 4 | -22/+36 |
2019-11-27 | core/memory: Migrate over ReadCString() to the Memory class | Lioncash | 1 | -2/+4 |
2019-11-27 | core/memory: Migrate over GetPointer() | Lioncash | 1 | -1/+2 |
2019-11-27 | core: Prepare various classes for memory read/write migration | Lioncash | 5 | -6/+18 |
2019-11-27 | core/memory: Migrate over address checking functions to the new Memory class | Lioncash | 3 | -8/+8 |
2019-11-27 | core/memory: Migrate over memory mapping functions to the new Memory class | Lioncash | 1 | -6/+7 |
2019-11-27 | core_timing: Use better reference tracking for EventType. (#3159) | bunnei | 2 | -7/+8 |
2019-11-26 | kernel: Fix reference management for client/server session. | bunnei | 3 | -20/+18 |
2019-11-25 | kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. (#3154) | bunnei | 36 | -299/+301 |
2019-11-23 | Update svc.cpp | bunnei | 1 | -0/+1 |
2019-11-23 | svc: GetSystemTick should return cntpct_el0, not core ticks. | bunnei | 1 | -1/+3 |
2019-11-21 | Kernel: Optimize condition variable threads management. | Fernando Sahmkow | 4 | -24/+21 |
2019-11-21 | Kernel: Correct SignalProcessWideKey | Fernando Sahmkow | 1 | -6/+2 |
2019-11-21 | Kernel: Correct behavior of Condition Variables to be more similar to real hardware. | Fernando Sahmkow | 5 | -15/+74 |
2019-11-16 | Kernel: Correct Cancel Synchronization. | Fernando Sahmkow | 3 | -2/+19 |
2019-11-12 | kernel: Resolve sign conversion warnings | Lioncash | 4 | -72/+60 |
2019-11-03 | kernel: readable_event: Signal only once. | bunnei | 1 | -2/+4 |
2019-11-03 | kernel: events: Remove ResetType::Automatic. | bunnei | 7 | -29/+4 |
2019-11-03 | kernel: readable_event: Initialize members. | bunnei | 1 | -1/+1 |
2019-10-28 | scheduler: Mark parameter of AskForReselectionOrMarkRedundant() as const | Lioncash | 2 | -5/+5 |
2019-10-28 | scheduler: Silence sign conversion warnings | Lioncash | 1 | -5/+5 |
2019-10-28 | scheduler: Initialize class members directly where applicable | Lioncash | 2 | -6/+4 |
2019-10-28 | scheduler: Amend documentation comments | Lioncash | 2 | -75/+59 |
2019-10-15 | Kernel Thread: Cleanup THREADPROCESSORID_DONT_UPDATE. | Fernando Sahmkow | 2 | -4/+1 |
2019-10-15 | Kernel: Address Feedback 2 | Fernando Sahmkow | 2 | -9/+6 |
2019-10-15 | Kernel: Clang Format | Fernando Sahmkow | 2 | -5/+5 |
2019-10-15 | Kernel: Reverse global accessor removal. | Fernando Sahmkow | 4 | -23/+9 |
2019-10-15 | Kernel: Address Feedback. | Fernando Sahmkow | 6 | -67/+98 |
2019-10-15 | Kernel Scheduler: Make sure the global scheduler shutdowns correctly. | Fernando Sahmkow | 3 | -0/+17 |
2019-10-15 | Kernel_Thread: Eliminate most global accessors. | Fernando Sahmkow | 1 | -11/+11 |
2019-10-15 | KernelSVC: Assert that condition variable address is aligned to 4 bytes. | Fernando Sahmkow | 1 | -0/+4 |
2019-10-15 | Kernel: Correct Paused scheduling | Fernando Sahmkow | 1 | -3/+1 |
2019-10-15 | Kernel: Corrections to Wait Objects clearing in which a thread could still be signalled after a timeout or a cancel. | Fernando Sahmkow | 3 | -3/+4 |
2019-10-15 | Kernel: Correct redundant yields to only advance time forward. | Fernando Sahmkow | 1 | -3/+5 |
2019-10-15 | Kernel: Corrections to ModifyByWaitingCountAndSignalToAddressIfEqual | Fernando Sahmkow | 1 | -5/+13 |
2019-10-15 | Kernel: Correct Results in Condition Variables and Mutexes | Fernando Sahmkow | 3 | -24/+17 |
2019-10-15 | Kernel: Clang Format | Fernando Sahmkow | 2 | -2/+3 |
2019-10-15 | Kernel: Remove global system accessor from WaitObject | Fernando Sahmkow | 4 | -2/+17 |
2019-10-15 | Scheduler: Implement Yield Count and Core migration on Thread Preemption. | Fernando Sahmkow | 2 | -5/+85 |
2019-10-15 | Scheduler: Corrections to YieldAndBalanceLoad and Yield bombing protection. | Fernando Sahmkow | 2 | -8/+8 |
2019-10-15 | Kernel: Initial implementation of thread preemption. | Fernando Sahmkow | 3 | -0/+30 |
2019-10-15 | Scheduler: Add protections for Yield bombing | Fernando Sahmkow | 5 | -24/+31 |
2019-10-15 | Kernel: Style and Corrections | Fernando Sahmkow | 8 | -90/+130 |
2019-10-15 | Correct PrepareReschedule | Fernando Sahmkow | 3 | -37/+20 |
2019-10-15 | Comment and reorganize the scheduler | Fernando Sahmkow | 2 | -98/+104 |
2019-10-15 | Add PrepareReschedule where required. | Fernando Sahmkow | 3 | -16/+18 |
2019-10-15 | Correct compiling errors and addapt to the new interface. | Fernando Sahmkow | 1 | -4/+1 |
2019-10-15 | Correct Supervisor Calls to work with the new scheduler, | Fernando Sahmkow | 1 | -26/+41 |
2019-10-15 | Add interfacing to the Global Scheduler | Fernando Sahmkow | 2 | -0/+17 |
2019-10-15 | Addapt thread class to the new Scheduler | Fernando Sahmkow | 2 | -60/+237 |
2019-10-15 | Implement a new Core Scheduler | Fernando Sahmkow | 2 | -258/+411 |
2019-10-06 | core: Remove Core::CurrentProcess() | Lioncash | 1 | -1/+1 |
2019-09-05 | kernel/vm_manager: Correct doxygen comment parameter tags for MapPhysicalMemory/UnmapPhysicalMemory | Lioncash | 1 | -4/+4 |
2019-09-05 | kernel/vm_manager: Move variables closer to usage spots in MapPhysicalMemory/UnmapPhysicalMemory | Lioncash | 1 | -16/+10 |
2019-08-30 | kernel/vm_manager: Correct behavior in failure case of UnmapPhysicalMemory() | Lioncash | 1 | -0/+2 |
2019-08-30 | kernel/vm_manager: Reserve memory ahead of time for slow path in MergeAdjacentVMA | Lioncash | 1 | -1/+4 |
2019-08-30 | kernel/vm_manager: std::move shared_ptr instance in MergeAdjacentVMA | Lioncash | 1 | -1/+1 |
2019-08-30 | kernel/vm_manager: Deduplicate iterator creation in MergeAdjacentVMA | Lioncash | 1 | -7/+10 |
2019-08-30 | kernel/vm_manager: Simplify some std::vector constructor calls | Lioncash | 1 | -2/+2 |
2019-08-30 | kernel/vm_manager: Simplify some assertion messages | Lioncash | 1 | -10/+10 |
2019-07-19 | Kernel: Address Feedback | Fernando Sahmkow | 2 | -3/+9 |
2019-07-19 | VM_Manager: Align allocated memory to 256bytes | Fernando Sahmkow | 9 | -26/+42 |
2019-07-18 | Kernel: Downgrade WaitForAddress and SignalToAddress messages to Trace. | Fernando Sahmkow | 1 | -4/+4 |
2019-07-12 | Remove unicorn mappings/unmappings | Michael Scire | 1 | -19/+0 |
2019-07-11 | core/arm: Remove obsolete Unicorn memory mapping | Lioncash | 1 | -20/+0 |
2019-07-11 | Restore memory perms on svcUnmapMemory/UnloadNro | Michael Scire | 1 | -1/+8 |
2019-07-09 | Prevent merging of device mapped memory blocks. | Michael Scire | 1 | -0/+5 |
2019-07-07 | Remove unused member function declaration | Michael Scire | 1 | -9/+0 |
2019-07-07 | physmem: add helpers, cleanup logic. | Michael Scire | 2 | -171/+170 |
2019-07-07 | clang-format fixes | Michael Scire | 2 | -3/+3 |
2019-07-07 | address review commentary | Michael Scire | 5 | -36/+42 |
2019-07-07 | Implement MapPhysicalMemory/UnmapPhysicalMemory | Michael Scire | 6 | -20/+468 |
2019-07-07 | kernel/process: Allocate the process' TLS region during initialization | Lioncash | 3 | -3/+14 |
2019-07-07 | kernel/process: Move main thread stack allocation to its own function | Lioncash | 2 | -12/+17 |
2019-07-06 | kernel/vm_manager: Rename 'new map' to 'stack' | Lioncash | 3 | -37/+37 |
2019-07-06 | kernel/vm_manager: Handle stack/TLS IO region placement better | Lioncash | 1 | -2/+13 |
2019-07-04 | kernel/process: Default initialize all member variables | Lioncash | 1 | -2/+2 |
2019-07-04 | kernel/process: Decouple TLS handling from threads | Lioncash | 4 | -66/+97 |
2019-07-04 | kernel/vm_manager: Add overload of FindFreeRegion() that operates on a boundary | Lioncash | 2 | -13/+49 |
2019-06-16 | Core_Timing: Make core_timing threadsafe by default. | Fernando Sahmkow | 1 | -3/+3 |
2019-06-12 | kernel/vm_manager: Remove redundant Reset call in destructor | Lioncash | 1 | -3/+1 |
2019-06-10 | kernel: Differentiate kernel and user processes when picking ID | Zach Hilman | 4 | -8/+25 |
2019-06-10 | kernel/process: Make Create()'s name parameter be taken by value | Lioncash | 2 | -2/+2 |
2019-06-10 | kernel/svc: Implement TotalMemoryUsedWithoutMmHeap/TotalMemoryAvailableWithoutMmHeap | Lioncash | 3 | -2/+42 |
2019-06-10 | kernel/svc: Amend naming for TotalMemoryUsage in svcGetInfo() | Lioncash | 3 | -6/+6 |
2019-06-10 | kernel/svc: Remove duplicate enum entry in svcGetInfo() | Lioncash | 1 | -2/+1 |
2019-06-05 | kernel/process: Remove unused boost header include | Lioncash | 1 | -1/+0 |
2019-06-05 | core/core_timing_util: Use std::chrono types for specifying time units | Lioncash | 1 | -2/+2 |
2019-05-25 | svc: Save report on call to svcBreak | Zach Hilman | 1 | -1/+7 |
2019-05-19 | Address review comment | Tobias | 1 | -1/+1 |
2019-05-19 | kernel/svc: Mark GetThreadList() and UnmapProcessCodeMemory() as internally linked | Lioncash | 1 | -4/+4 |
2019-05-18 | core/kernel/object: Rename ResetType enum members | Lioncash | 4 | -5/+6 |
2019-05-18 | HLE/IPC: HLEContext can memorize the client thread and use it for SleepClientThread | Weiyi Wang | 3 | -8/+9 |
2019-04-29 | kernel/svc: Make svcCreateThread/svcStartThread/svcSleepThread/svcExitThread calls show up in the debug log | Lioncash | 1 | -4/+4 |
2019-04-29 | kernel/svc: Reorganize svcSetThreadCoreMask() | Lioncash | 1 | -32/+39 |
2019-04-29 | kernel/thread: Update thread processor ID flags | Lioncash | 2 | -7/+16 |
2019-04-19 | kernel/svc: Name supervisor call 0x36 | Lioncash | 1 | -1/+1 |
2019-04-17 | kernel/thread: Unify wait synchronization types | Lioncash | 6 | -38/+34 |
2019-04-17 | kernel/svc: Migrate svcCancelSynchronization behavior to a thread function | Lioncash | 3 | -7/+17 |
2019-04-17 | kernel/wait_object: Make GetHighestPriorityReadyThread() a const member function | Lioncash | 2 | -2/+2 |
2019-04-17 | kernel/vm_manager: Remove usages of global system accessors | Lioncash | 3 | -7/+11 |
2019-04-15 | svc: Specify handle value in thread's name | Lioncash | 2 | -2/+10 |
2019-04-15 | kernel/thread: Remove BoostPriority() | Lioncash | 2 | -11/+0 |
2019-04-14 | kernel/thread: Remove unused guest_handle member variable | Lioncash | 3 | -16/+7 |
2019-04-13 | kernel/svc: Implement svcUnmapProcessCodeMemory | Lioncash | 3 | -1/+143 |
2019-04-13 | kernel/svc: Implement svcMapProcessCodeMemory | Lioncash | 4 | -1/+131 |
2019-04-12 | core/core: Move process execution start to System's Load() | Lioncash | 2 | -8/+11 |
2019-04-12 | core/process: Remove unideal page table setting from LoadFromMetadata() | Lioncash | 1 | -5/+0 |
2019-04-12 | core/cpu_core_manager: Create threads separately from initialization. | Lioncash | 2 | -2/+7 |
2019-04-11 | kernel: Make handle type declarations constexpr | Lioncash | 10 | -10/+10 |
2019-04-10 | kernel/server_session: Remove obsolete TODOs | Lioncash | 1 | -7/+2 |
2019-04-09 | kernel/process: Set page table when page table resizes occur. | Lioncash | 1 | -0/+2 |
2019-04-08 | kernel/svc: Deglobalize the supervisor call handlers | Lioncash | 3 | -322/+373 |
2019-04-07 | kernel: Handle page table switching within MakeCurrentProcess() | Lioncash | 3 | -4/+2 |
2019-04-06 | kernel/server_session: Return a std::pair from CreateSessionPair() | Lioncash | 3 | -8/+7 |
2019-04-06 | kernel/server_port: Return a std::pair from CreatePortPair() | Lioncash | 2 | -7/+7 |
2019-04-04 | kernel/svc: Properly sanitize mutex address in WaitProcessWideKeyAtomic | Lioncash | 1 | -0/+14 |
2019-04-03 | kernel/transfer_memory: Add accessors to data and sizes | Lioncash | 2 | -11/+31 |
2019-04-03 | kernel/server_session: Provide a GetName() override | Lioncash | 1 | -0/+4 |
2019-04-03 | kernel/object: Remove unused handle type entry | Lioncash | 2 | -2/+0 |
2019-04-02 | kernel/svc: Implement svcGetThreadList | Lioncash | 4 | -1/+70 |
2019-04-02 | kernel/svc: Implement svcGetProcessList | Lioncash | 4 | -1/+53 |
2019-04-02 | process: Fix up compilation | ReinUsesLisp | 1 | -1/+1 |
2019-04-02 | kernel/thread: Make AllWaitObjectsReady() a const qualified member function | Lioncash | 2 | -2/+2 |
2019-04-02 | kernel/wait_object: Make ShouldWait() take thread members by pointer-to-const | Lioncash | 11 | -11/+11 |
2019-04-01 | kernel/thread: Avoid sign conversion within GetCommandBufferAddress() | Lioncash | 1 | -2/+2 |
2019-04-01 | kernel/thread: Make parameter of GetWaitObjectIndex() const qualified | Lioncash | 2 | -3/+3 |
2019-04-01 | kernel/resource_limit: Remove the name member from resource limits | Lioncash | 3 | -14/+6 |
2019-04-01 | general: Use deducation guides for std::lock_guard and std::unique_lock | Lioncash | 2 | -2/+2 |
2019-03-30 | kernel/scheduler: Remove unused parameter to AddThread() | Lioncash | 3 | -4/+4 |
2019-03-30 | kernel/scheduler: Use deduction guides on mutex locks | Lioncash | 1 | -8/+8 |
2019-03-29 | kernel/shared_memory: Remove unused core/memory.h include | Lioncash | 1 | -1/+0 |
2019-03-29 | kernel/shared_memory: Sanitize supplied size when unmapping | Lioncash | 3 | -4/+18 |
2019-03-29 | kernel/process: Report total physical memory used to svcGetInfo | Lioncash | 3 | -4/+11 |
2019-03-29 | kernel/process: Store the total size of the code memory loaded | Lioncash | 2 | -0/+5 |
2019-03-28 | kernel/process: Store the main thread stack size to a data member | Lioncash | 2 | -4/+7 |
2019-03-28 | kernel/process: Make Run's stack size parameter a u64 | Lioncash | 2 | -2/+2 |
2019-03-28 | kernel/process: Ensure that given stack size is always page-aligned | Lioncash | 1 | -0/+4 |
2019-03-27 | Fixes and corrections on formatting. | Fernando Sahmkow | 1 | -6/+9 |
2019-03-27 | Use MultiLevelQueue instead of old ThreadQueueList | Fernando Sahmkow | 2 | -19/+24 |
2019-03-24 | core/core_timing: Make callback parameters consistent | Lioncash | 1 | -1/+1 |
2019-03-24 | kernel/kernel: Remove unnecessary forward declaration | Lioncash | 1 | -3/+0 |
2019-03-24 | kernel/process: Remove unused AddressMapping struct | Lioncash | 1 | -8/+0 |
2019-03-24 | kernel/vm_manager: Handle shrinking of the heap size within SetHeapSize() | Lioncash | 2 | -24/+46 |
2019-03-24 | kernel/vm_manager: Rename HeapAllocate to SetHeapSize | Lioncash | 3 | -4/+3 |
2019-03-24 | kernel/vm_manager: Handle case of identical calls to HeapAllocate | Lioncash | 1 | -0/+5 |
2019-03-24 | kernel/vm_manager: Remove unused class variables | Lioncash | 1 | -3/+0 |
2019-03-24 | kernel/vm_manager: Remove unnecessary heap_used data member | Lioncash | 3 | -13/+2 |
2019-03-24 | kernel/vm_manager: Tidy up heap allocation code | Lioncash | 3 | -27/+37 |
2019-03-22 | kernel/codeset: Make CodeSet's memory data member a regular std::vector | Lioncash | 2 | -4/+5 |
2019-03-21 | kernel/vm_manager: Rename CodeStatic/CodeMutable to Code and CodeData respectively | Lioncash | 3 | -17/+17 |
2019-03-21 | kernel/vm_manager: Amend flag values for CodeMutable | Lioncash | 1 | -1/+1 |
2019-03-20 | kernel/process: Make MapSegment lambda reference parameter const | Lioncash | 1 | -1/+1 |
2019-03-20 | kernel: Move CodeSet structure to its own source files | Lioncash | 4 | -44/+105 |
2019-03-20 | Fix crash caused by 2238. | Fernando Sahmkow | 1 | -1/+2 |
2019-03-20 | Fix small bug that kept a thread as a condvar thread after being signalled. | Fernando Sahmkow | 2 | -6/+8 |
2019-03-20 | Add CondVar Thread State. | Fernando Sahmkow | 4 | -4/+6 |
2019-03-20 | Small fixes to address_arbiter to better match the IDB. | Fernando Sahmkow | 2 | -5/+5 |
2019-03-17 | core: Move PageTable struct into Common. | bunnei | 4 | -9/+10 |
2019-03-16 | kernel/thread: Actually remove the definition of ExitCurrentThread() | Lioncash | 1 | -6/+0 |
2019-03-16 | kernel/thread: Move thread exiting logic from ExitCurrentThread to svcExitThread | Lioncash | 2 | -8/+7 |
2019-03-16 | kernel/thread: Migrate WaitCurrentThread_Sleep into the Thread interface | Lioncash | 4 | -25/+24 |
2019-03-16 | kernel/thread: Expand documentation of nominal_priority and current_priority | Lioncash | 2 | -3/+11 |
2019-03-16 | kernel/thread: Make bracing consistent within UpdatePriority() | Lioncash | 1 | -2/+4 |
2019-03-16 | kernel/thread: Amend condition within UpdatePriority() | Lioncash | 1 | -3/+3 |
2019-03-16 | kernel/thread: Maintain priority ordering of added mutex waiting threads | Lioncash | 1 | -14/+24 |
2019-03-15 | core/hle/kernel/mutex: Remove usages of global system accessors | Lioncash | 1 | -11/+15 |
2019-03-15 | core/hle/kernel: Make Mutex a per-process class. | Lioncash | 5 | -18/+47 |
2019-03-13 | core/hle/kernel/svc: Implement svcUnmapTransferMemory | Lioncash | 1 | -1/+48 |
2019-03-13 | core/hle/kernel/svc: Implement svcMapTransferMemory | Lioncash | 1 | -1/+57 |
2019-03-13 | core/hle/kernel: Split transfer memory handling out into its own class | Lioncash | 5 | -4/+175 |
2019-03-13 | kernel/process: Remove use of global system accessors | Lioncash | 2 | -8/+9 |
2019-03-11 | kernel/server_port: Make data members private | Lioncash | 3 | -13/+35 |
2019-03-08 | kernel/hle_ipc: Convert std::shared_ptr IPC header instances to std::optional | Lioncash | 3 | -46/+46 |
2019-03-08 | kernel: Make the address arbiter instance per-process | Lioncash | 6 | -26/+33 |
2019-03-08 | kernel/svc: Move address arbiter signaling behind a unified API function | Lioncash | 3 | -22/+26 |
2019-03-08 | kernel/svc: Move address arbiter waiting behind a unified API function | Lioncash | 3 | -19/+24 |
2019-03-06 | kernel/server_session: Make data members private | Lioncash | 4 | -31/+72 |
2019-03-06 | kernel/client_session: Make data members private | Lioncash | 1 | -4/+5 |
2019-03-05 | kernel/address_arbiter: Pass in system instance to constructor | Lioncash | 4 | -21/+39 |
2019-03-05 | kernel/address_arbiter: Minor tidying up | Lioncash | 1 | -18/+18 |
2019-03-05 | kernel/address_arbiter: Convert the address arbiter into a class | Lioncash | 5 | -82/+135 |
2019-03-05 | vm_manager: Remove cheat-specific ranges from VMManager | Zach Hilman | 2 | -25/+0 |
2019-03-05 | kernel/thread: Remove obsolete TODO in Create() | Lioncash | 1 | -2/+0 |
2019-03-05 | core/hle/ipc: Remove unnecessary includes | Lioncash | 2 | -5/+6 |
2019-03-05 | vm_manager: Add support for storing and getting main code region | Zach Hilman | 2 | -0/+28 |
2019-03-04 | vm_manager: Use range helpers in HeapAlloc() and HeapFree() | Lioncash | 1 | -4/+2 |
2019-03-04 | vm_manager: Provide address range checking functions for other memory regions | Lioncash | 2 | -4/+35 |
2019-03-04 | kernel/scheduler: Pass in system instance in constructor | Lioncash | 2 | -9/+11 |
2019-03-04 | kernel/shared_memory: Get rid of the use of global accessor functions within Create() | Lioncash | 1 | -3/+2 |
2019-03-04 | svc: Migrate address range checking functions to VMManager | Lioncash | 3 | -23/+30 |
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 | 6 | -10/+54 |
2019-02-25 | kernel/handle-table: In-class initialize data members | Lioncash | 2 | -3/+2 |
2019-02-25 | kernel/handle_table: Resolve truncation warnings | Lioncash | 1 | -2/+2 |
2019-02-16 | address_arbiter: Use nested namespaces where applicable | Lioncash | 2 | -8/+4 |
2019-02-16 | core_timing: Convert core timing into a class | Lioncash | 5 | -21/+31 |
2019-02-12 | core_timing: Rename CoreTiming namespace to Core::Timing | Lioncash | 5 | -16/+17 |
2019-02-01 | kernel: Remove the Timer class | Lioncash | 6 | -227/+0 |
2019-01-30 | kernel/wait_object: Devirtualize functions related to manipulating the thread list directly | Lioncash | 1 | -3/+3 |
2019-01-30 | kernel/timer: Remove unnecessary WakeupAllWaitingThreads() override | Lioncash | 2 | -6/+0 |
2019-01-30 | kernel/readable_event: Remove unnecessary WakeupAllWaitingThreads() override | Lioncash | 2 | -6/+0 |
2019-01-27 | kernel/svc: Log out uncaught C++ exceptions from svcBreak | Lioncash | 1 | -0/+4 |
2019-01-04 | Removed pulse event type | David Marcec | 3 | -7/+0 |
2019-01-01 | core/kernel: Remove unnecessary inclusions | Lioncash | 11 | -12/+17 |
2018-12-31 | kernel/svc: Correct misleading error message within CreateThread() | Lioncash | 1 | -2/+3 |
2018-12-31 | kernel/svc: Sanitize core number and thread priorities in CreateThread() | Lioncash | 1 | -6/+17 |
2018-12-31 | kernel/process: Rename GetAllowedProcessorMask() and GetAllowedThreadPriorityMask() | Lioncash | 2 | -11/+11 |
2018-12-31 | kernel/svc: Simplify thread core ID sanitizing in CreateThread | Lioncash | 1 | -7/+1 |
2018-12-28 | kernel/process: Start the main thread using the specified ideal core | Lioncash | 1 | -2/+2 |
2018-12-28 | kernel: Rename 'default' CPU core to 'ideal' core | Lioncash | 4 | -21/+21 |
2018-12-28 | kernel/thread: Move process thread initialization into process.cpp | Lioncash | 3 | -36/+30 |
2018-12-28 | kernel/process: Remove most allocation functions from Process' interface | Lioncash | 3 | -38/+19 |
2018-12-27 | kernel/vm_manager: Reset region attributes when unmapping a VMA | Lioncash | 1 | -0/+1 |
2018-12-21 | kernel/process: Hook up the process capability parser to the process itself | Lioncash | 2 | -120/+18 |
2018-12-21 | kernel/process_capability: Handle debug capability flags | Lioncash | 2 | -1/+18 |
2018-12-21 | kernel/process_capability: Handle handle table capability flags | Lioncash | 2 | -1/+11 |
2018-12-21 | kernel/process_capability: Handle kernel version capability flags | Lioncash | 2 | -1/+18 |
2018-12-21 | kernel/process_capability: Handle program capability flags | Lioncash | 3 | -2/+29 |
2018-12-21 | kernel/process_capability: Handle interrupt capability flags | Lioncash | 1 | -1/+21 |
2018-12-21 | kernel/process_capability: Handle syscall capability flags | Lioncash | 2 | -1/+29 |
2018-12-21 | kernel/process_capability: Handle the priority mask and core mask flags | Lioncash | 2 | -1/+40 |
2018-12-21 | kernel/process: Introduce process capability parsing skeleton | Lioncash | 4 | -3/+466 |
2018-12-19 | kernel/svc: Handle thread handles within GetProcessId | Lioncash | 1 | -10/+23 |
2018-12-19 | svc: Implement svcSetMemoryAttribute | Lioncash | 1 | -5/+46 |
2018-12-19 | vm_manager: Add member function for setting memory attributes across an address range | Lioncash | 2 | -0/+41 |
2018-12-19 | vm_manager: Add member function for checking a memory range adheres to certain attributes, permissions and states | Lioncash | 2 | -0/+100 |
2018-12-19 | kernel/kernel: Use correct initial PID for userland Process instances | Lioncash | 2 | -4/+14 |
2018-12-19 | kernel/svc: Correct output parameter for svcGetThreadId | Lioncash | 1 | -1/+1 |
2018-12-19 | kernel/thread: Make thread_id a 64-bit value | Lioncash | 3 | -5/+5 |
2018-12-19 | kernel/svc: Correct output parameter for svcGetProcessId | Lioncash | 2 | -2/+10 |
2018-12-19 | kernel/process: Make process_id a 64-bit value | Lioncash | 3 | -6/+6 |
2018-12-19 | Moved backtrace to ArmInterface | David Marcec | 3 | -11/+3 |
2018-12-19 | Fixed uninitialized memory due to missing returns in canary | David Marcec | 1 | -0/+1 |
2018-12-18 | kernel/thread: Set default fpcr | MerryMage | 1 | -0/+3 |
2018-12-16 | vm_manager: Rename meminfo_state to state | Lioncash | 2 | -10/+9 |
2018-12-16 | vm_manager: Add backing functionality for memory attributes | Lioncash | 2 | -1/+85 |
2018-12-12 | svc: Enable svcQueryProcessMemory | Lioncash | 2 | -1/+6 |
2018-12-12 | svc: Write out the complete MemoryInfo structure in QueryProcessMemory | Lioncash | 1 | -0/+3 |
2018-12-12 | svc: Handle memory writing explicitly within QueryProcessMemory | Lioncash | 2 | -26/+22 |
2018-12-12 | vm_manager: Correct ordering of last two struct members of MemoryInfo | Lioncash | 1 | -2/+2 |
2018-12-12 | svc_wrap: Correct register index for a wrapper specialization | Lioncash | 1 | -1/+1 |
2018-12-12 | vm_manager: Amend the returned values for invalid memory queries in QueryMemory() | Lioncash | 2 | -4/+7 |
2018-12-12 | vm_manager: Migrate memory querying to the VMManager interface | Lioncash | 4 | -18/+33 |
2018-12-12 | vm_manager: Migrate MemoryInfo and PageInfo to vm_manager.h | Lioncash | 3 | -17/+16 |
2018-12-12 | vm_manager: Amend MemoryState enum members | Lioncash | 5 | -28/+111 |
2018-12-12 | Fix Process object leak on emulation stop | Jens Schmer | 3 | -13/+12 |
2018-12-06 | vm_manager: Make vma_map private | Lioncash | 4 | -22/+36 |
2018-12-05 | kernel/process: Set ideal core from metadata | Lioncash | 1 | -0/+1 |
2018-12-05 | svc: Avoid incorrect fast yield condition | Zach Hilman | 1 | -6/+1 |
2018-12-05 | kernel/svc: Correct behavior of svcResetSignal() | Lioncash | 1 | -4/+11 |
2018-12-05 | kernel/process: Make Process a WaitObject | Lioncash | 3 | -6/+68 |
2018-12-05 | kernel/readable_event: Add member function for enforcing a strict reset contract | Lioncash | 2 | -1/+22 |
2018-12-04 | kernel/svc: Remove unused header inclusion | Lioncash | 1 | -1/+0 |
2018-12-04 | kernel/svc: Implement svcSignalEvent() | Lioncash | 1 | -1/+16 |
2018-12-04 | kernel/svc: Implement svcCreateEvent() | Lioncash | 2 | -1/+42 |
2018-12-04 | kernel/object: Amend handle types to distinguish between readable and writable events | Lioncash | 5 | -10/+19 |
2018-12-04 | kernel/handle_table: Amend reference to CTR-OS in Create() | Lioncash | 1 | -2/+3 |
2018-12-04 | kernel/svc: Implement the resource limit svcGetInfo option | Lioncash | 4 | -9/+34 |
2018-12-04 | svc: Implement SetThreadActivity (thread suspension) | Luke Street | 4 | -6/+72 |
2018-12-04 | [Kernel::CreateThread] Match format specifiers to LOG_TRACE's arguments | V.Kalyuzhny | 1 | -1/+1 |
2018-12-04 | scheduler: Avoid manual Reschedule call | Zach Hilman | 2 | -11/+11 |
2018-12-03 | scheduler: Only work steal higher priority threads from other cores | Zach Hilman | 3 | -35/+24 |
2018-12-03 | Moved backtrace to ArmInterface | David Marcec | 1 | -14/+1 |
2018-12-03 | Print backtrace on svcBreak | David Marcec | 3 | -0/+24 |
2018-12-02 | svc: Use the current process' handle table for retrieving the process instance to act upon | Lioncash | 1 | -1/+2 |
2018-12-02 | svc: Reorganize svcGetInfo, handle more error cases for existing implemented info categories | Lioncash | 1 | -50/+99 |
2018-12-02 | svc: Avoid performance-degrading unnecessary reschedule | Zach Hilman | 2 | -8/+6 |
2018-12-01 | Fix debug build | Lioncash | 1 | -1/+1 |
2018-11-29 | hle_ipc: Refactor SleepClientThread to avoid ReadableEvent | Zach Hilman | 5 | -8/+10 |
2018-11-29 | kernel/event: Reference ReadableEvent from WritableEvent | Zach Hilman | 8 | -125/+47 |
2018-11-29 | core: Port all current usages of Event to Readable/WritableEvent | Zach Hilman | 1 | -5/+6 |
2018-11-29 | hle_ipc: Use event pair for SleepClientThread | Zach Hilman | 2 | -19/+22 |
2018-11-29 | kernel: Add named event table | Zach Hilman | 2 | -0/+30 |
2018-11-29 | kernel: Divide Event into ReadableEvent and WritableEvent | Zach Hilman | 5 | -59/+206 |
2018-11-29 | kernel/object: Add descriptions to ResetTypes | Zach Hilman | 1 | -3/+3 |
2018-11-27 | svc: Implement svcSetResourceLimitLimitValue() | Lioncash | 1 | -1/+36 |
2018-11-27 | svc: Implement svcGetResourceLimitCurrentValue() | Lioncash | 1 | -16/+49 |
2018-11-27 | svc: Implement svcGetResourceLimitLimitValue() | Lioncash | 2 | -2/+33 |
2018-11-27 | svc: Implement svcCreateResourceLimit() | Lioncash | 2 | -1/+27 |
2018-11-27 | Added comment on Main memory size for more clarity | David Marcec | 1 | -0/+1 |
2018-11-27 | Made svcSetHeapSize and svcCreateSharedMemory more readable | David Marcec | 1 | -4/+4 |
2018-11-27 | Reworked svcs slightly, improved error messages in AM and fsp_srv | David Marcec | 1 | -12/+20 |
2018-11-26 | Improved error messages for SVCs | David Marcec | 1 | -76/+170 |
2018-11-26 | Changed logging to be "Log before execution", Added more error logging, all services should now log on some level | David Marcec | 1 | -11/+90 |
2018-11-25 | svc: Return ERR_INVALID_ENUM_VALUE from svcGetInfo | Luke Street | 1 | -1/+2 |
2018-11-22 | scheduler: Add explanations for YieldWith and WithoutLoadBalancing | Zach Hilman | 5 | -77/+139 |
2018-11-22 | kernel/handle_table: Move private static functions into the cpp file | Lioncash | 2 | -7/+9 |
2018-11-22 | kernel/handle_table: Restrict handle table size to 1024 entries | Lioncash | 1 | -5/+2 |
2018-11-22 | kernel/handle_table: Default destructor in the cpp file | Lioncash | 2 | -0/+3 |
2018-11-20 | kernel/process: Move <random> include to the cpp file | Lioncash | 2 | -1/+1 |
2018-11-20 | kernel/resource_limit: Clean up interface | Lioncash | 6 | -190/+81 |
2018-11-19 | kernel/shared_memory: Make Map() and Unmap() take the target process by reference rather than as a pointer | Lioncash | 3 | -12/+12 |
2018-11-19 | kernel/shared_memory: Add a const qualified member function overload for GetPointer() | Lioncash | 2 | -1/+12 |
2018-11-19 | kernel/shared_memory: Use 64-bit types for offset and size in CreateForApplet | Lioncash | 2 | -2/+2 |
2018-11-19 | kernel/shared_memory: Make GetPointer() take a std::size_t instead of a u32 | Lioncash | 2 | -2/+2 |
2018-11-19 | kernel/shared_memory: Make data members private | Lioncash | 1 | -12/+17 |
2018-11-19 | svc: Implement yield types 0 and -1 | Zach Hilman | 5 | -2/+114 |
2018-11-18 | svc: ResetSignal is not stubbed | Tobias | 1 | -1/+1 |
2018-11-18 | am: Deglobalize software keyboard applet | Zach Hilman | 1 | -4/+4 |
2018-11-18 | svc: Implement svcCreateTransferMemory | Zach Hilman | 1 | -3/+33 |
2018-11-18 | ldr_ro: Add error check for memory allocation failure | Zach Hilman | 3 | -6/+7 |
2018-11-16 | kernel/errors: Clean up error codes | Lioncash | 2 | -62/+32 |
2018-11-15 | process: Make MirrorMemory take state to map new memory as | Zach Hilman | 1 | -1/+2 |
2018-11-14 | kernel/thread: Deduplicate scheduler switching code | Lioncash | 2 | -37/+13 |
2018-11-13 | vm_manager: Unstub GetTotalHeapUsage() | Lioncash | 1 | -2/+1 |
2018-11-13 | kernel/process: Migrate heap-related memory management out of the process class and into the vm manager | Lioncash | 4 | -84/+97 |
2018-11-13 | svc: Use proper random entropy generation algorithm | Zach Hilman | 3 | -1/+27 |
2018-11-13 | svc: Return random seed for svcGetInfo RandomEntropy | Zach Hilman | 1 | -1/+2 |
2018-11-08 | svcBreak now dumps information from the debug buffer passed (#1646) | David | 1 | -0/+28 |
2018-11-06 | Implement SetMemoryPermission | Frederic Laing | 1 | -3/+39 |
2018-11-03 | Stubbed SetMemoryPermission | Frederic Laing | 2 | -1/+12 |
2018-10-30 | general: Remove unused boost inclusions where applicable | Lioncash | 1 | -2/+0 |
2018-10-30 | global: Use std::optional instead of boost::optional (#1578) | Frederic L | 1 | -4/+4 |
2018-10-30 | hle_ipc: Add member function for querying the existence of a domain header | Lioncash | 2 | -1/+5 |
2018-10-30 | hle_ipc: Make GetDomainMessageHeader return a regular pointer | Lioncash | 2 | -3/+3 |
2018-10-28 | core: Make System references const where applicable | Lioncash | 2 | -3/+3 |
2018-10-26 | svc: Localize the GetInfo enum class to the function itself | Lioncash | 2 | -32/+31 |
2018-10-26 | svc: Implement svcGetInfo command 0xF0000002 | Lioncash | 6 | -4/+98 |
2018-10-26 | process: LoadModule should clear JIT instruction cache. | bunnei | 1 | -0/+6 |
2018-10-26 | Kernel/Memory: Added a function to first a suitable guest address at which to allocate a region of a given size. | bunnei | 2 | -0/+28 |
2018-10-24 | kernel/errors: Remove now-unused, unnecessary, error codes | Lioncash | 1 | -8/+0 |
2018-10-24 | kernel/shared_memory: Return ERR_INVALID_MEMORY_PERMISSIONS instead of ERR_INVALID_COMBINATION | Lioncash | 1 | -4/+3 |
2018-10-24 | kernel/server_port: Simplify emptiness check within ShouldWait() | Lioncash | 1 | -1/+1 |
2018-10-24 | kernel/server_port: Change error case return value in Accept() to ERR_NOT_FOUND | Lioncash | 2 | -3/+1 |
2018-10-24 | kernel/error: Remove leftover 3DS error codes | Lioncash | 1 | -5/+0 |
2018-10-24 | kernel/svc: Amend returned error code for invalid priorities in CreateThread | Lioncash | 1 | -1/+1 |
2018-10-24 | kernel/svc: Move and correct returned error code for invalid thread priorities in SetThreadPriority() | Lioncash | 1 | -5/+6 |
2018-10-24 | kernel/error: Add error code for invalid pointers | Lioncash | 1 | -1/+1 |
2018-10-24 | kernel/error: Add error code for closed sessions | Lioncash | 1 | -1/+3 |
2018-10-23 | Added assertion failed, reworked logging levels | David Marcec | 1 | -16/+24 |
2018-10-23 | Added break types to svcBreak | David Marcec | 1 | -4/+42 |
2018-10-20 | kernel/process: Make the handle table per-process | Lioncash | 8 | -98/+95 |
2018-10-20 | svc: Fix vma boundary check in svcQueryMemory | Lioncash | 1 | -1/+1 |
2018-10-18 | svc: Check for word alignment of addresses within svcArbitrateLock/svcArbitrateUnlock | Lioncash | 1 | -0/+8 |
2018-10-18 | common: Move Is4KBAligned() to alignment.h | Lioncash | 1 | -9/+7 |
2018-10-18 | svc: Add missing sanitizing checks for MapSharedMemory/UnmapSharedMemory | Lioncash | 3 | -3/+50 |
2018-10-15 | core_cpu: Make Cpu scheduler instances unique_ptrs instead of shared_ptrs | Lioncash | 4 | -15/+15 |
2018-10-15 | svc: Clarify enum values for AddressSpaceBaseAddr and AddressSpaceSize in svcGetInfo() | Lioncash | 4 | -28/+44 |
2018-10-14 | Stop all threads on svcBreak | David Marcec | 1 | -0/+6 |
2018-10-13 | svc: Implement svcGetProcessInfo | Lioncash | 3 | -4/+50 |
2018-10-12 | kernel/process: Make CodeSet a regular non-inherited object | Lioncash | 4 | -40/+14 |
2018-10-12 | thread: Remove unnecessary memset from ResetThreadContext() | Lioncash | 1 | -4/+1 |
2018-10-12 | svc: Fix typos in sanitizing checks for MapMemory/UnmapMemory | Lioncash | 1 | -3/+3 |
2018-10-11 | svc: Add missing address range sanitizing checks to MapMemory/UnmapMemory | Lioncash | 2 | -12/+81 |
2018-10-10 | kernel/thread: Use a regular pointer for the owner/current process | Lioncash | 6 | -29/+29 |
2018-10-10 | Changed all casts in svc_wrap.h to be static_cast instead | David Marcec | 1 | -25/+28 |
2018-10-10 | Use a better name than "dont_kill_application" | David Marcec | 1 | -2/+2 |
2018-10-10 | Fixed incorrect types for svcBreak | David Marcec | 2 | -3/+8 |
2018-10-09 | Added bitfield instead of manually checking if the bit is set | David Marcec | 1 | -4/+12 |
2018-10-09 | Actual kill execution when the bit isn't set, not the other way around | David Marcec | 1 | -1/+1 |
2018-10-09 | svcBreak, Signalling to the debugger should not kill execution | David Marcec | 1 | -5/+12 |
2018-10-06 | Added forward define for ServerPort | David Marcec | 2 | -4/+6 |
2018-10-06 | Ported #4296 from citra | David Marcec | 2 | -1/+6 |
2018-10-06 | kernel/mutex: Amend behavior of TransferMutexOwnership() | Lioncash | 1 | -1/+1 |
2018-10-05 | thread: Make the scheduler pointer a regular pointer | balika011 | 2 | -4/+4 |
2018-10-04 | kernel/thread: Make all instance variables private | Lioncash | 11 | -187/+363 |
2018-09-30 | kernel/svc: Implement svcGetThreadContext() | Lioncash | 3 | -2/+37 |
2018-09-30 | kernel/process: Add a data member to determine if a process is 64-bit or not. | Lioncash | 2 | -0/+11 |
2018-09-30 | kernel/process: Make data member variables private | Lioncash | 5 | -51/+96 |
2018-09-28 | kernel/object: Remove unnecessary std::move from DynamicObjectCast() | Lioncash | 2 | -3/+2 |
2018-09-25 | kernel/scheduler: Take ARM_Interface instance by reference in the constructor | Lioncash | 2 | -9/+9 |
2018-09-25 | memory: Dehardcode the use of fixed memory range constants | Lioncash | 4 | -13/+17 |
2018-09-25 | svc: Report correct memory-related values within some of the cases in svcGetInfo() | Lioncash | 3 | -28/+41 |
2018-09-25 | memory: Dehardcode the use of a 36-bit address space | Lioncash | 2 | -5/+16 |
2018-09-24 | process/vm_manager: Amend API to allow reading parameters from NPDM metadata | Lioncash | 4 | -10/+248 |
2018-09-24 | svc: Updated svc names | tech4me | 1 | -7/+7 |
2018-09-21 | svc: Move most process termination code to its own function within Process | Lioncash | 3 | -32/+56 |
2018-09-21 | thread/process: Move TLS slot marking/freeing to the process class | Lioncash | 4 | -68/+89 |
2018-09-21 | kernel/thread: Use owner_process when setting the page table in SetupMainThread() | Lioncash | 3 | -5/+5 |
2018-09-21 | arm_interface: Replace kernel vm_manager include with a forward declaration | Lioncash | 1 | -0/+1 |
2018-09-18 | svc_wrap: Convert the PARAM macro into a function | Lioncash | 1 | -37/+36 |
2018-09-18 | arm_interface: Remove ARM11-isms from the CPU interface | Lioncash | 1 | -2/+2 |
2018-09-18 | kernel/mutex: Replace ResultCode construction for invalid addresses with the named variant | Lioncash | 1 | -2/+2 |
2018-09-18 | kernel/svc: Handle error cases for svcArbitrateLock() and svcArbitrateUnlock() | Lioncash | 1 | -0/+8 |
2018-09-15 | Port # #4192 from Citra: "svc: change unknown to thread in CreateThread" | Valentin Vanelslande | 1 | -1/+1 |
2018-09-15 | Port #4182 from Citra: "Prefix all size_t with std::" | fearlessTobi | 14 | -62/+65 |
2018-09-14 | kernel/svc: Sanitize creation of shared memory via svcCreateSharedMemory() | Lioncash | 1 | -2/+18 |
2018-09-14 | kernel/svc: Sanitize addresses, permissions, and sizes within svcMapSharedMemory() and svcUnmapSharedMemory() | Lioncash | 1 | -17/+25 |
2018-09-14 | kernel/svc: Sanitize addresses and sizes within svcMapMemory() and svcUnmapMemory() | Lioncash | 1 | -0/+23 |
2018-09-14 | kernel/svc: Sanitize heap sizes within svcSetHeapSize() | Lioncash | 2 | -0/+8 |
2018-09-13 | kernel/errors: Amend error code for ERR_NOT_FOUND | Lioncash | 1 | -1/+2 |
2018-09-13 | kernel/thread: Include thread-related enums within the kernel namespace | Lioncash | 1 | -6/+6 |
2018-09-12 | svc: Return ERR_INVALID_PROCESSOR_ID in CreateThread() if an invalid processor ID is given | Lioncash | 1 | -2/+2 |
2018-09-12 | kernel/errors: Correct error codes for invalid thread priority and invalid processor ID | Lioncash | 3 | -7/+9 |
2018-09-12 | svc: Do nothing if svcOutputDebugString() is given a length of zero | Lioncash | 1 | -0/+4 |
2018-09-12 | svc: Correct parameter type for OutputDebugString() | Lioncash | 2 | -3/+3 |
2018-09-07 | core: Migrate current_process pointer to the kernel | Lioncash | 2 | -0/+23 |
2018-09-02 | service: Migrate global named port map to the KernelCore class | Lioncash | 3 | -5/+49 |
2018-08-31 | core/core: Replace includes with forward declarations where applicable | Lioncash | 5 | -4/+12 |
2018-08-29 | kernel: Eliminate kernel global state | Lioncash | 32 | -405/+574 |
2018-08-25 | kernel/error: Amend error code for ERR_MAX_CONNECTIONS_REACHED | Lioncash | 1 | -2/+4 |
2018-08-25 | kernel/error: Amend error code for ERR_PORT_NAME_TOO_LONG | Lioncash | 1 | -2/+1 |
2018-08-25 | kernel/error: Add error code for the handle table being full | Lioncash | 3 | -4/+4 |
2018-08-25 | kernel/error: Add error code for invalid memory permissions | Lioncash | 2 | -3/+4 |
2018-08-25 | kernel/error: Correct kernel error code for invalid combination | Lioncash | 1 | -1/+2 |
2018-08-25 | svc: Return process title ID if queried in GetInfo() | Lioncash | 1 | -2/+1 |
2018-08-25 | core: Namespace all code in the arm subdirectory under the Core namespace | Lioncash | 4 | -6/+8 |
2018-08-15 | kernel/server_session: Add IsSession() member function | Lioncash | 2 | -2/+7 |
2018-08-15 | kernel/svc: Log svcBreak parameters | Lioncash | 1 | -2/+5 |
2018-08-13 | Core::CoreTiming: add UnscheduleEventThreadsafe | B3n30 | 1 | -1/+1 |
2018-08-13 | kernel/object: Tighten object against data races | Lioncash | 2 | -8/+9 |
2018-08-13 | Kernel/SVC: Don't reschedule the current core when creating a new thread. | Subv | 1 | -1/+0 |
2018-08-13 | Kernel/Threads: Lock the HLE mutex when executing the wakeup callback. | Subv | 1 | -0/+5 |
2018-08-13 | Kernel/Thread: Always use the threadsafe option when scheduling wakeups. | Subv | 1 | -2/+4 |
2018-08-12 | Kernel/Mutex: Don't duplicate threads in the mutex waiter list. | Subv | 2 | -2/+22 |
2018-08-12 | scheduler: Make HaveReadyThreads() a const member function | Lioncash | 2 | -2/+2 |
2018-08-12 | server_session: Provide more useful information and don't crash on bad IPC request. | bunnei | 1 | -0/+8 |
2018-08-09 | hle_ipc: Make WriteToOutgoingCommandBuffer()'s reference parameter const | Lioncash | 2 | -2/+2 |
2018-08-07 | client_port: Make all data members private | Lioncash | 3 | -7/+21 |
2018-08-06 | kernel/event: Make data members private | Lioncash | 1 | -4/+8 |
2018-08-05 | address_arbiter: Return by value from GetThreadsWaitingOnAddress() | Lioncash | 1 | -15/+15 |
2018-08-04 | kernel/thread: Fix potential crashes introduced in 26de4bb521b1ace7af76eff4f6956cb23ac0d58c | Lioncash | 3 | -13/+38 |
2018-08-03 | kernel/process: Use std::array where applicable | Lioncash | 1 | -1/+2 |
2018-08-03 | kernel/process: Use accessors instead of class members for referencing segment array | Lioncash | 2 | -15/+35 |
2018-08-03 | core/memory: Get rid of 3DS leftovers | Lioncash | 9 | -302/+24 |
2018-08-02 | kernel/vm_manager: Convert loop into std::any_of() | Lioncash | 1 | -4/+4 |
2018-08-02 | kernel/vm_manager: Use const where applicable | Lioncash | 3 | -19/+19 |
2018-08-02 | kernel/vm_manager: Use the VAddr type alias in CarveVMA() | Lioncash | 1 | -2/+2 |
2018-08-02 | kernel/thread: Make GetFreeThreadLocalSlot()'s loop indices size_t | Lioncash | 1 | -8/+5 |
2018-08-02 | kernel/thread: Make GetFreeThreadLocalSlot() reference parameter a const reference | Lioncash | 1 | -1/+2 |
2018-08-02 | kernel/thread: Make GetFreeThreadLocalSlot() internally linked | Lioncash | 1 | -1/+1 |
2018-08-02 | kernel: Move object class to its own source files | Lioncash | 29 | -136/+164 |
2018-08-01 | kernel/thread: Remove unimplemented function prototype | Lioncash | 1 | -6/+0 |
2018-07-31 | kernel: Remove unused object_address_table.cpp/.h | Lioncash | 5 | -102/+0 |
2018-07-31 | kernel: Remove unnecessary includes | Lioncash | 22 | -27/+46 |
2018-07-26 | kernel/timer: Make data members private where applicable | Lioncash | 1 | -5/+17 |
2018-07-24 | svc: Resolve sign comparison warnings in WaitSynchronization() | Lioncash | 1 | -4/+7 |
2018-07-24 | svc: Log parameters in SetMemoryAttribute() | Lioncash | 1 | -1/+3 |
2018-07-24 | core_timing: Split off utility functions into core_timing_util | MerryMage | 2 | -0/+2 |
2018-07-24 | mutex: Pass SharedPtr to GetHighestPriorityMutexWaitingThread() by reference | Lioncash | 1 | -1/+1 |
2018-07-24 | hle_ipc: Make constructors explicit where applicable | Lioncash | 1 | -1/+1 |
2018-07-23 | hle: Remove config_mem.h/.cpp | Lioncash | 3 | -13/+0 |
2018-07-23 | hle: Remove shared_page.h/.cpp | Lioncash | 3 | -4/+0 |
2018-07-22 | Kernel/SVC: Perform atomic accesses in SignalProcessWideKey as per the real kernel. | Subv | 1 | -7/+31 |
2018-07-21 | CPU: Save and restore the TPIDR_EL0 system register on every context switch. | Subv | 3 | -0/+13 |
2018-07-20 | thread: Convert ThreadStatus into an enum class | Lioncash | 9 | -71/+70 |
2018-07-19 | hle_ipc: Introduce generic WriteBuffer overload for multiple container types | Lioncash | 2 | -6/+21 |
2018-07-19 | svc: Correct always true assertion case in SetThreadCoreMask | Lioncash | 1 | -3/+4 |
2018-07-19 | hle_ipc: Amend usage of buffer_index within one of HLERequestContext's WriteBuffer() overloads | Lioncash | 1 | -1/+1 |
2018-07-19 | address_arbiter: Correct assignment within an assertion statement in WakeThreads() | Lioncash | 1 | -1/+1 |
2018-07-19 | vm_manager: Add missing commas to string literal array elements in GetMemoryStateName() | Lioncash | 1 | -22/+12 |
2018-07-19 | core/memory, core/hle/kernel: Use std::move where applicable | Lioncash | 8 | -13/+21 |
2018-07-19 | core: Don't construct instance of Core::System, just to access its live instance | Lioncash | 1 | -6/+6 |
2018-07-17 | nvflinger: Fix for BufferQueue event handling. | bunnei | 2 | -3/+11 |
2018-07-17 | Kernel/Arbiter: Fix bug in WaitIfLessThan | Michael Scire | 1 | -2/+4 |
2018-07-16 | scheduler: Clear exclusive state when switching contexts | MerryMage | 1 | -0/+1 |
2018-07-14 | No need to use ASSERT_MSG with an empty message | David Marcec | 1 | -2/+2 |
2018-07-03 | Update clang format | James Rowe | 6 | -38/+35 |
2018-07-03 | Rename logging macro back to LOG_* | James Rowe | 11 | -79/+79 |
2018-06-22 | IPC: skip empty buffer write | mailwl | 1 | -0/+5 |
2018-06-22 | Kernel/Arbiters: Fix casts, cleanup comments/magic numbers | Michael Scire | 2 | -17/+16 |
2018-06-22 | Add additional missing format. | Michael Scire | 2 | -21/+27 |
2018-06-22 | Run clang-format on PR. | Michael Scire | 3 | -180/+181 |
2018-06-22 | Kernel/Arbiters: HLE is atomic, adjust code to reflect that. | Michael Scire | 2 | -37/+13 |
2018-06-21 | Kernel/Arbiters: Initialize arb_wait_address in thread struct. | Michael Scire | 2 | -1/+5 |
2018-06-21 | Kernel/Arbiters: Clear WaitAddress in SignalToAddress | Michael Scire | 1 | -0/+1 |
2018-06-21 | Kernel/Arbiters: Mostly implement SignalToAddress | Michael Scire | 4 | -10/+110 |
2018-06-21 | Kernel/Arbiters: Implement WaitForAddress | Michael Scire | 4 | -6/+67 |
2018-06-21 | Kernel/Arbiters: Add stubs for 4.x SignalToAddress/WaitForAddres SVCs. | Michael Scire | 7 | -9/+147 |
2018-06-20 | Build: Fixed some MSVC warnings in various parts of the code. | Subv | 1 | -2/+2 |
2018-06-18 | svc: Add a stub for UserExceptionContextAddr. | Jules Blok | 1 | -0/+5 |
2018-06-02 | Kernel/Threads: A thread waking up by timeout from a WaitProcessWideKey may already have an assigned lock owner. | Subv | 1 | -2/+5 |
2018-05-31 | Kernel/Thread: Corrected a typo that caused the affinity mask to never be changed. | Subv | 1 | -2/+2 |
2018-05-31 | Kernel/SVC: Support special core values -2 and -3 in svcSetThreadCoreMask. | Subv | 2 | -1/+28 |
2018-05-30 | Kernel/Thread: Corrected a typo in an assert about the processor id. | Subv | 1 | -1/+1 |
2018-05-26 | Add & correct miscellaneous things (#470) | greggameplayer | 1 | -0/+3 |
2018-05-20 | Mutex: Do not assert when the mutex waiting threads list isn't empty on mutex release. | Subv | 1 | -1/+0 |
2018-05-19 | Kernel/SVC: Signal the highest priority threads first in svcSignalProcessWideKey. | Subv | 1 | -51/+68 |
2018-05-19 | Kernel/Threads: Reschedule the proper core when operating on that core's threads. | Subv | 1 | -2/+6 |
2018-05-19 | SVC: Removed unused WaitSynchronization1 function | Subv | 1 | -30/+0 |
2018-05-17 | Added RequestWithContext & ControlWithContext | David Marcec | 1 | -1/+3 |
2018-05-11 | thread: Rename mask to affinity_masks. | bunnei | 3 | -4/+4 |
2018-05-11 | thread: Support core change on ResumeFromWait and improve ChangeCore. | bunnei | 1 | -37/+68 |
2018-05-11 | scheduler: Protect scheduling functions with a global mutex. | bunnei | 2 | -0/+18 |
2018-05-11 | thread: Initialize ideal_core and mask members. | bunnei | 1 | -0/+2 |
2018-05-11 | threading: Reschedule only on cores that are necessary. | bunnei | 2 | -3/+3 |
2018-05-11 | svc: Implement GetThreadCoreMask and SetThreadCoreMask. | bunnei | 1 | -7/+22 |
2018-05-11 | thread: Implement ChangeCore function. | bunnei | 2 | -1/+58 |
2018-05-11 | svc: SignalProcessWideKey should apply to all cores. | bunnei | 1 | -43/+50 |
2018-05-11 | svc: Implement GetCurrentProcessorNumber. | bunnei | 1 | -2/+2 |
2018-05-11 | core: Implement multicore support. | bunnei | 5 | -45/+65 |
2018-05-02 | general: Make formatting of logged hex values more straightforward | Lioncash | 6 | -49/+50 |
2018-05-02 | ipc: Add support for PopIpcInterface() method. | bunnei | 2 | -0/+15 |
2018-05-01 | GetSharedFontInOrderOfPriority (#381) | David | 2 | -23/+27 |
2018-04-30 | core_timing: Namespace all functions and constants in core_timing's header | Lioncash | 2 | -3/+5 |
2018-04-30 | string_util: Remove StringFromFormat() and related functions | Lioncash | 1 | -1/+1 |
2018-04-27 | core: Replace usages of LOG_GENERIC with new fmt-capable equivalents | Lioncash | 3 | -6/+4 |
2018-04-27 | general: Convert assertion macros over to be fmt-compatible | Lioncash | 4 | -9/+9 |
2018-04-26 | kernel/shared_memory: Remove unnecessary semicolon at end of ConvertPermissions() | Lioncash | 1 | -1/+1 |
2018-04-26 | kernel: Migrate logging macros to fmt-compatible ones | Lioncash | 11 | -106/+109 |
2018-04-23 | Kernel: Implemented mutex priority inheritance. | Subv | 4 | -10/+94 |
2018-04-21 | Kernel: Use 0x2C as default main thread priority for homebrew and lone NRO/NSOs | Subv | 1 | -1/+1 |
2018-04-21 | Qt: Update the WaitTree widget to show info about the current mutex of each thread. | Subv | 1 | -4/+0 |
2018-04-21 | Kernel: Remove unused ConditionVariable class. | Subv | 5 | -148/+0 |
2018-04-21 | Kernel: Remove old and unused Mutex code. | Subv | 4 | -209/+3 |
2018-04-21 | Kernel: Properly implemented svcWaitProcessWideKey and svcSignalProcessWideKey | Subv | 1 | -83/+46 |
2018-04-21 | Kernel: Corrected the implementation of svcArbitrateLock and svcArbitrateUnlock. | Subv | 6 | -22/+126 |
2018-04-21 | resource_limit: Make ResourceTypes an enum class | Lioncash | 3 | -38/+38 |
2018-04-20 | common_funcs: Remove ARRAY_SIZE macro | Lioncash | 1 | -1/+2 |
2018-04-17 | Various service name fixes - part 2 (rebased) (#322) | Hexagon12 | 1 | -8/+8 |
2018-04-15 | vm_manager: Increase GetTotalMemoryUsage value. | bunnei | 1 | -1/+1 |
2018-04-03 | svc: Stub out SetThreadActivity, GetThreadContext. | bunnei | 2 | -2/+19 |
2018-04-03 | shared_memory: Remove incorrect 3ds-specific check. | bunnei | 1 | -12/+0 |
2018-04-01 | hle_ipc, fsp_srv: Cleanup logging. | bunnei | 1 | -1/+1 |
2018-03-31 | hle_ipc: Do not ensure write buffer size. | bunnei | 1 | -2/+5 |
2018-03-31 | memory: Fix stack region. | bunnei | 2 | -3/+4 |
2018-03-30 | svc: Stub GetThreadCoreMask. | bunnei | 2 | -3/+26 |
2018-03-19 | Clang Fixes | N00byKing | 2 | -5/+5 |
2018-03-19 | More Warning cleanups | N00byKing | 2 | -2/+2 |
2018-03-19 | Clean Warnings (?) | N00byKing | 5 | -8/+8 |
2018-03-19 | hle_ipc: Add SleepClientThread to block current thread within HLE routines. | bunnei | 2 | -0/+47 |
2018-03-19 | hle_ipc: Use shared_ptr instead of unique_ptr to allow copies. | bunnei | 2 | -9/+9 |
2018-03-19 | hle_ipc: Remove GetPointer(..) usage with WriteToOutgoingCommandBuffer. | bunnei | 2 | -5/+13 |
2018-03-19 | thread: Add THREADSTATUS_WAIT_HLE_EVENT, remove THREADSTATUS_WAIT_ARB. | bunnei | 3 | -20/+6 |
2018-03-17 | process: MirrorMemory should use MemoryState::Mapped. | bunnei | 1 | -1/+1 |
2018-03-16 | process: Unmap previously allocated heap. | bunnei | 1 | -1/+3 |
2018-03-16 | arm_interface: Support unmapping previously mapped memory. | bunnei | 1 | -0/+3 |
2018-03-16 | svc: Use more correct values for GetInfo MapRegion and NewMapRegion. | bunnei | 3 | -29/+5 |
2018-03-16 | kernel: Move stack region outside of application heap. | bunnei | 3 | -8/+3 |
2018-03-16 | process: Fix stack memory state. | bunnei | 1 | -2/+4 |
2018-03-16 | MemoryState: Add additional memory states and improve naming. | bunnei | 5 | -18/+45 |
2018-03-14 | core: Move process creation out of global state. | bunnei | 9 | -33/+36 |
2018-03-02 | Kernel: Store the program id in the Process class instead of the CodeSet class. | Subv | 2 | -9/+8 |
2018-02-27 | thread: Clear the process list on shutdown. | Jules Blok | 1 | -1/+3 |
2018-02-25 | (Hopefully) Fix MinGW Build | N00byKing | 1 | -1/+1 |
2018-02-25 | Add UnmapSharedMemory | N00byKing | 2 | -1/+17 |
2018-02-22 | Stub more functions | mailwl | 1 | -1/+11 |
2018-02-20 | Add warning if Domain request has no domain message header | mailwl | 1 | -0/+3 |
2018-02-20 | Fix: change check for domain order and existance of domain message header | mailwl | 2 | -2/+2 |
2018-02-20 | IPC: add domain header to response if only it exists in request | mailwl | 2 | -5/+7 |
2018-02-19 | scheduler: Cleanup based on PR feedback. | bunnei | 2 | -4/+3 |
2018-02-18 | kernel: Use Scheduler class for threading. | bunnei | 3 | -172/+16 |
2018-02-18 | kernel: Add Scheduler, which encapsulates the scheduling loading from Thread module. | bunnei | 2 | -0/+208 |
2018-02-18 | kernel: Remove unused address_arbiter code. | bunnei | 4 | -197/+0 |
2018-02-18 | Kernel/IPC: Add a small delay after each SyncRequest to prevent thread starvation. | Subv | 4 | -50/+63 |
2018-02-16 | Service/hid: stub some functions | mailwl | 2 | -0/+53 |
2018-02-15 | shared_memory: Remove some checks. | bunnei | 1 | -13/+0 |
2018-02-14 | hle_ipc: Remove const from WriteBuffer size. | bunnei | 2 | -2/+2 |
2018-02-14 | thread: Silence formatting specifier warnings | Lioncash | 1 | -2/+3 |
2018-02-14 | vm_manager: Silence formatting specifier warnings | Lioncash | 1 | -5/+7 |
2018-02-14 | hle_ipc: Add GetReadBufferSize and check write buffer size. | bunnei | 2 | -0/+10 |
2018-02-14 | hle_ipc: Add helper functions for reading and writing buffers. | bunnei | 1 | -4/+2 |
2018-02-14 | hle_ipc: Add helper functions for reading and writing buffers. | bunnei | 2 | -0/+51 |
2018-02-06 | mutex: Update hasWaiters on release. | bunnei | 1 | -0/+1 |
2018-02-04 | GetInfo: Implement IsCurrentProcessBeingDebugged. | bunnei | 1 | -0/+3 |
2018-02-04 | WaitProcessWideKeyAtomic: Handle case where condition variable was already created. | bunnei | 3 | -13/+17 |
2018-02-03 | svc: SharedMemory size should be 64-bits and cleanup. | bunnei | 3 | -11/+11 |
2018-02-03 | ArbitrateLock: Assert that requesting_thread is current_thread. | bunnei | 1 | -0/+1 |
2018-01-30 | shared_memory: Only mark addresses as invalid if they are within the heap | shinyquagsire23 | 1 | -1/+2 |
2018-01-27 | memory: Replace all memory hooking with Special regions | MerryMage | 2 | -6/+6 |
2018-01-25 | server_session: Fix scenario where all domain handlers are closed. | bunnei | 1 | -3/+3 |
2018-01-25 | hle: Rename RequestBuilder to ResponseBuilder. | bunnei | 1 | -1/+1 |
2018-01-25 | ipc_helpers: Make interface domain agnostic and add header validation. | bunnei | 1 | -1/+12 |
2018-01-25 | hle: Integrate Domain handling into ServerSession. | bunnei | 5 | -28/+66 |
2018-01-25 | hle: Remove Domain and SyncObject kernel objects. | bunnei | 7 | -164/+2 |
2018-01-25 | handle_table: Remove ConvertSessionToDomain. | bunnei | 2 | -17/+0 |
2018-01-21 | Format: Run the new clang format on everything | James Rowe | 22 | -31/+32 |
2018-01-20 | Added CreateSharedMemory & UNIMPLEMENTED() for non existent services. (#113) | David | 2 | -1/+22 |
2018-01-20 | Fixes some cast warnings, partial port of citra #3064 (#106) | River City Ransomware | 2 | -2/+2 |
2018-01-19 | svc: Fix svcGetInfo MapRegionBaseAddr. | bunnei | 3 | -1/+9 |
2018-01-19 | svc: Add additional fields to MemoryInfo struct. | bunnei | 1 | -0/+4 |
2018-01-18 | Stub PopLaunchParameter and implement Buffer C Descriptors reading on hle_ipc (#96) | gdkchan | 2 | -7/+33 |
2018-01-18 | svc: Rename some entries to match their analogue on SwitchBrew | Lioncash | 1 | -7/+7 |
2018-01-18 | svc: Add CreateJitMemory and MapJitMemory svc strings | Lioncash | 1 | -2/+2 |
2018-01-17 | svc: Clang-format fix. | bunnei | 1 | -6/+4 |
2018-01-17 | hle_ipc: Clang format. | bunnei | 1 | -2/+3 |
2018-01-17 | ipc: Implement domain command CloseVirtualHandle. | bunnei | 2 | -2/+28 |
2018-01-17 | SVC: Correct some return values in svcGetInfo and added TitleId and PrivilegedProcessId stubs. | Subv | 1 | -6/+21 |
2018-01-17 | SVC: Add 4.0.0+ comment to GetInfoType enum values. | Subv | 1 | -0/+1 |
2018-01-17 | IPC: Push domain objects as move handles when not in a domain. | Subv | 1 | -0/+8 |
2018-01-16 | SetThreadCoreMask stub, time to implement fsp | David Marcec | 1 | -1/+6 |
2018-01-16 | Added more svcGetInfo pairs | David Marcec | 4 | -2/+29 |
2018-01-16 | clang-format | MerryMage | 6 | -18/+14 |
2018-01-14 | shared_memory: Minor fixes and cleanup. | bunnei | 1 | -6/+6 |
2018-01-14 | svc: Implement svcMapSharedMemory. | bunnei | 2 | -1/+38 |
2018-01-14 | kernel: Increase default stack size to 64K. | bunnei | 1 | -1/+1 |
2018-01-13 | yuzu: Update license text to be consistent across project. | bunnei | 14 | -14/+14 |
2018-01-12 | core: Include <algorithm> where used. | bunnei | 1 | -0/+2 |
2018-01-12 | core: Fix recent GCC build breaks. | bunnei | 1 | -2/+2 |
2018-01-12 | svc: Implement GetSystemTick. | bunnei | 2 | -2/+21 |
2018-01-11 | IPC: Corrected some definitions for the buffer C descriptor flags. | Subv | 2 | -1/+8 |
2018-01-11 | svc: Stub ResetSignal and CreateTransferMemory | Subv | 2 | -3/+28 |
2018-01-11 | svc: Stub SetMemoryAttribute | Subv | 2 | -0/+11 |
2018-01-10 | Threads: Added enum values for the Switch's 4 cpu cores and implemented svcGetInfo(AllowedCpuIdBitmask) | Subv | 4 | -10/+25 |
2018-01-09 | SVC: Fixed WaitSynchronization with multiple handles when none is immediately ready. | Subv | 1 | -7/+18 |
2018-01-09 | SVC: Implemented CancelSynchronization. | Subv | 2 | -1/+19 |
2018-01-09 | ErrorCodes: Updated the InvalidHandle and Timeout kernel error codes. | Subv | 1 | -2/+7 |
2018-01-09 | SVC: Fixed WaitSynchronization with multiple handles when at least one of them is ready. | Subv | 2 | -3/+29 |
2018-01-09 | kernel: Rename Semaphore to ConditionVariable. | bunnei | 8 | -159/+167 |
2018-01-09 | mutex: Remove unused call to VerifyGuestState. | bunnei | 1 | -3/+0 |
2018-01-09 | Kernel: Actually wake up the requested number of threads in Semaphore::Release. | Subv | 3 | -18/+16 |
2018-01-09 | Kernel: Properly keep track of mutex lock data in the guest memory. This fixes userland locking/unlocking. | Subv | 3 | -63/+60 |
2018-01-09 | Kernel: Allow chaining WaitSynchronization calls inside a wakeup callback. | Subv | 4 | -30/+78 |
2018-01-09 | CoreTiming: Reworked CoreTiming (cherry-picked from Citra #3119) | B3n30 | 2 | -9/+5 |
2018-01-07 | IPC: Add functions to read the input move/copy objects from an IPC request. | Subv | 2 | -2/+26 |
2018-01-07 | IPC: Don't attempt to read the command buffer if it holds a Close request. | Subv | 1 | -0/+5 |
2018-01-07 | IPC Cleanup: Remove 3DS-specific code and translate copy, move and domain objects in IPC requests. | Subv | 2 | -74/+72 |
2018-01-07 | IPC: Skip the entire u64 of the command id when receiving an IPC request. | Subv | 1 | -1/+2 |
2018-01-07 | IPC: Use the correct size when pushing raw data to the command buffer and fixed pushing domain objects. | Subv | 2 | -3/+7 |
2018-01-07 | svc: Implement svcSignalProcessWideKey. | bunnei | 2 | -4/+23 |
2018-01-07 | semaphore: More changes for Switch. | bunnei | 2 | -11/+17 |
2018-01-07 | wait_object: Refactor to allow waking up a single thread. | bunnei | 2 | -15/+28 |
2018-01-06 | svc: Implement svcWaitProcessWideKeyAtomic. | bunnei | 2 | -1/+54 |
2018-01-06 | semaphore: Updates for Switch. | bunnei | 2 | -21/+31 |
2018-01-06 | svc: Implement WaitSynchronization for a single handle. | bunnei | 1 | -4/+24 |
2018-01-06 | svc: Refactor LockMutex code to use WaitSynchronization1. | bunnei | 1 | -13/+45 |
2018-01-05 | svc: Add missing string_util include. | bunnei | 1 | -0/+1 |
2018-01-03 | arm: Remove SkyEye/Dyncom code that is ARMv6-only. | bunnei | 2 | -23/+11 |
2018-01-03 | vm_manager: Use a more reasonable MAX_ADDRESS size. | bunnei | 1 | -5/+4 |
2018-01-03 | svc: Remove unnecessary "svc" prefix to naming scheme. | bunnei | 1 | -106/+106 |
2018-01-03 | hle: Move SVC code to kernel namespace. | bunnei | 3 | -0/+805 |
2018-01-01 | vm_manager: Stub out a bunch of interfaces used by svcGetInfo. | bunnei | 2 | -1/+51 |
2018-01-01 | core/video_core: Fix a bunch of u64 -> u32 warnings. | bunnei | 1 | -2/+2 |
2018-01-01 | svc: Implement svcExitProcess. | bunnei | 2 | -7/+38 |
2018-01-01 | svc: Implement svcLockMutex. | bunnei | 2 | -23/+95 |
2018-01-01 | kernel: Add ObjectAddressTable class. | bunnei | 3 | -2/+101 |
2017-12-31 | thread: Keep track of the initially created handle. | bunnei | 2 | -1/+5 |
2017-12-31 | errors: Define missing kernel error codes. | bunnei | 1 | -0/+3 |
2017-12-31 | svc: Implement svcUnmapMemory. | bunnei | 2 | -0/+7 |
2017-12-30 | thread: Main thread should set thread handle to reg 1. | bunnei | 1 | -1/+4 |
2017-12-30 | thread: Remove THUMB mode flag. | bunnei | 1 | -1/+1 |
2017-12-30 | thread: Main thread should be ready by default, all others dormant. | bunnei | 1 | -4/+3 |
2017-12-29 | kernel: Various 64-bit fixes in memory/process/thread | bunnei | 5 | -14/+14 |
2017-12-29 | kernel: Fix implementation of ConvertSessionToDomain. | bunnei | 6 | -30/+67 |
2017-12-29 | kernel: Add basic support for Domain object. | bunnei | 4 | -4/+110 |
2017-12-29 | kernel: Add SyncObject primitive, use it for ClientSession. | bunnei | 2 | -8/+38 |
2017-12-29 | process: Add method to mirror a memory region. | bunnei | 2 | -0/+27 |
2017-11-01 | service: Return proper result code for IPC::CommandType::Close. | bunnei | 2 | -6/+7 |
2017-11-01 | hle: Use Switch formatted result codes. | bunnei | 2 | -77/+22 |
2017-10-20 | hle: Fix QueryMemory response for MemoryInfo. | bunnei | 4 | -115/+14 |
2017-10-19 | hle_ipc: Only copy necessary fields for outgoing command buffer. | bunnei | 1 | -1/+1 |
2017-10-19 | hle_ipc: Parse out buffer X/A/B/B descriptors from incoming command buffer. | bunnei | 2 | -14/+19 |
2017-10-15 | hle: Implement ConvertSessionToDomain, various cleanups. | bunnei | 3 | -5/+31 |
2017-10-15 | hle: Initial implementation of NX service framework and IPC. | bunnei | 2 | -70/+107 |
2017-10-10 | loader: Various improvements for NSO/NRO loaders. | bunnei | 2 | -4/+4 |
2017-10-02 | Kernel/SharedMemory: Don't take over and unmap the source memory block when creating a shared memory, just reference it. | Subv | 1 | -15/+12 |
2017-10-01 | Kernel/Thread: Added a helper function to get a thread's command buffer VAddr. | Subv | 2 | -0/+12 |
2017-09-30 | nso: Refactor and allocate .bss section. | bunnei | 2 | -8/+10 |
2017-09-30 | process: Support loading multiple codesets. | bunnei | 2 | -20/+27 |
2017-09-30 | kernel: Various threading fixes to support 64-bit addressing. | bunnei | 2 | -8/+8 |
2017-09-30 | core: Various changes to support 64-bit addressing. | bunnei | 2 | -21/+21 |
2017-09-30 | Fixed type conversion ambiguity | Huw Pascoe | 9 | -23/+24 |
2017-09-28 | Kernel/Threads: When putting a thread to wait, specify a function to execute when it is awoken. | Subv | 3 | -13/+26 |
2017-09-27 | Kernel/Thread: Allow specifying which process a thread belongs to when creating it. | Subv | 3 | -15/+19 |
2017-09-24 | memory: Add GetCurrentPageTable/SetCurrentPageTable | MerryMage | 1 | -7/+4 |
2017-09-15 | Kernel/Threads: Don't clear the CPU instruction cache when performing a context switch from an idle thread into a thread in the same process. | Subv | 1 | -1/+3 |
2017-09-15 | Kernel/Memory: Changed GetPhysicalPointer so that it doesn't go through the current process' page table to obtain a pointer. | Subv | 2 | -25/+7 |
2017-09-10 | Kernel/Memory: Switch the current page table when a new process is scheduled. | Subv | 1 | -0/+10 |
2017-09-10 | Kernel/Memory: Give each Process its own page table. | Subv | 2 | -5/+14 |
2017-08-22 | Kernel/HLE: Use a mutex to synchronize access to the HLE kernel state between the cpu thread and any other possible threads that might touch the kernel (network thread, etc). | Subv | 1 | -1/+1 |
2017-08-22 | Kernel/Threads: Don't immediately switch to the new main thread when loading a new process. | Subv | 1 | -5/+1 |
2017-08-21 | Warnings: Add UNREACHABLE macros to switches that contemplate all possible values. | Subv | 1 | -0/+3 |
2017-06-29 | Kernel/SVC: Pass the current thread as a parameter to ClientSession::SendSyncRequest. | Subv | 2 | -3/+6 |
2017-06-26 | Kernel/Sessions: Clean up the list of pending request threads of a session when the client endpoint is closed. | Subv | 1 | -0/+5 |
2017-06-25 | Kernel/ServerSession: Keep track of which threads have issued sync requests. | Subv | 3 | -9/+29 |
2017-06-23 | Kernel: Implement AcceptSession SVC | Yuri Kunde Schlesner | 3 | -2/+26 |
2017-06-22 | Memory: Make PhysicalToVirtualAddress return a boost::optional | Yuri Kunde Schlesner | 1 | -1/+1 |
2017-06-21 | Kernel/IPC: Support translation of null handles | Yuri Kunde Schlesner | 1 | -7/+12 |
2017-06-19 | ResultVal: Remove MoveFrom() | Yuri Kunde Schlesner | 4 | -7/+7 |
2017-06-19 | Kernel: Add comment about the extended linear heap area | Yuri Kunde Schlesner | 1 | -0/+2 |
2017-06-19 | Kernel/IPC: Make HLERequestContext usable from outside kernel | Yuri Kunde Schlesner | 2 | -3/+9 |
2017-06-12 | Kernel/IPC: Use boost::small_vector for HLE context objects | Yuri Kunde Schlesner | 1 | -1/+3 |
2017-06-11 | Kernel: Allow clearing request_objects to re-use buffer space | Yuri Kunde Schlesner | 2 | -0/+11 |
2017-06-11 | Kernel: Basic support for IPC translation for HLE services | Yuri Kunde Schlesner | 2 | -6/+125 |
2017-06-11 | Kernel: Add methods in HLERequestContext abstracting handle creation | Yuri Kunde Schlesner | 2 | -0/+12 |
2017-06-11 | ServiceFramework: Use separate copy of command buffer | Yuri Kunde Schlesner | 1 | -3/+6 |
2017-06-08 | Session: Remove/add some forward declarations | Yuri Kunde Schlesner | 2 | -1/+2 |
2017-06-08 | Kernel: Ensure objects are kept alive during ClientSession disconnection | Yuri Kunde Schlesner | 1 | -7/+13 |
2017-06-08 | Service: Add new ServiceFramework framework for writing HLE services | Yuri Kunde Schlesner | 2 | -2/+36 |
2017-06-06 | Kernel: Remove some unnecessary namespace qualifications | Yuri Kunde Schlesner | 1 | -4/+6 |
2017-06-06 | Kernel: Add a dedicated SetHleHandler method to ServerPort/ServerSession | Yuri Kunde Schlesner | 7 | -33/+36 |
2017-06-06 | HLE: Move SessionRequestHandler from Service:: to Kernel:: | Yuri Kunde Schlesner | 8 | -15/+90 |
2017-05-30 | Kernel: Move HandleTable to a separate file | Yuri Kunde Schlesner | 13 | -202/+234 |
2017-05-30 | Kernel: Move WaitObject to a separate file | Yuri Kunde Schlesner | 11 | -132/+173 |
2017-05-30 | Kernel: Removed HandleTable::GetWaitObject | Yuri Kunde Schlesner | 1 | -9/+0 |
2017-05-29 | Kernel: Extract dynamic Object pointer cast into its own function | Yuri Kunde Schlesner | 1 | -11/+24 |
2017-05-25 | Kernel: Centralize error definitions in errors.h | Yuri Kunde Schlesner | 13 | -46/+133 |
2017-05-22 | Kernel/Sessions: Remove the ClientSession::Create function. | Subv | 3 | -16/+3 |
2017-05-15 | Kernel: Remove a now unused enum and variable regarding a session's status. | Subv | 2 | -8/+0 |
2017-05-15 | Kernel: Use a Session object to keep track of the status of a Client/Server session pair. | Subv | 6 | -32/+84 |
2017-05-10 | Kernel: Map special regions according to ExHeader | Yuri Kunde Schlesner | 4 | -50/+102 |
2017-05-10 | DSP: Create backing memory for entire DSP RAM | Yuri Kunde Schlesner | 1 | -1/+6 |
2017-02-27 | Timer: restore missing signaled=true from #2421 | wwylele | 1 | -0/+2 |
2017-02-27 | Fix log entry in timer::signal (#2600) | B3n30 | 1 | -1/+1 |
2017-02-27 | Doxygen: Amend minor issues (#2593) | Mat M | 1 | -1/+2 |
2017-02-27 | Core: Remove unnecessary include in thread.h | Yuri Kunde Schlesner | 2 | -1/+1 |
2017-02-22 | Timers: Immediately signal the timer if it was started with an initial value of 0. | Subv | 2 | -16/+31 |
2017-01-11 | Threads: Check the process' resource limit for the max allowed priority when creating a thread and remove the priority clamping code. | Subv | 1 | -8/+2 |
2017-01-11 | Thread: Added priority range checking to svcSetThreadPriority and removed priority clamping code from Thread::SetPriority. | Subv | 2 | -18/+4 |
2017-01-06 | Kernel: Don't attempt to yield execution in SleepThread(0) if there are no available threads to run. | Subv | 2 | -0/+9 |
2017-01-05 | Kernel: Remove some unused functions. | Subv | 2 | -32/+0 |
2017-01-05 | Kernel: Removed the priority boost code for starved threads. | Subv | 1 | -27/+0 |
2017-01-05 | Kernel: Implemented Pulse event and timers. | Subv | 5 | -13/+20 |
2017-01-05 | Kernel/Semaphore: Fixed a regression in semaphore waits. | Subv | 1 | -1/+2 |
2017-01-05 | Kernel: Add some asserts to enforce the invariants in the scheduler. | Subv | 2 | -2/+13 |
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 | 3 | -10/+19 |
2017-01-04 | Kernel: Use different thread statuses when a thread calls WaitSynchronization1 and WaitSynchronizationN with wait_all = true. | Subv | 2 | -13/+17 |
2017-01-04 | Kernel/Mutex: Propagate thread priority changes to other threads inheriting the priority via mutexes | Subv | 4 | -42/+54 |
2017-01-04 | Kernel/Mutex: Update a mutex priority when a thread stops waiting on it. | Subv | 4 | -22/+39 |
2017-01-04 | Kernel/Mutex: Implemented priority inheritance. | Subv | 4 | -22/+51 |
2017-01-04 | Kernel: Object ShouldWait and Acquire calls now take a thread as a parameter. | Subv | 16 | -62/+50 |
2017-01-04 | Kernel/Synch: Do not attempt a reschedule on every syscall. | Subv | 1 | -0/+1 |
2016-12-22 | ThreadContext: Move from "core" to "arm_interface". | bunnei | 2 | -4/+5 |
2016-12-22 | core: Replace "AppCore" nomenclature with just "CPU". | bunnei | 1 | -3/+3 |
2016-12-22 | core: Remove HLE module, consolidate code & various cleanups. | bunnei | 4 | -7/+3 |
2016-12-22 | core: Consolidate core and system state, remove system module & cleanups. | bunnei | 1 | -3/+3 |
2016-12-17 | Thread: remove the thread from the thread list when exiting | wwylele | 2 | -2/+14 |
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 | 7 | -33/+51 |
2016-12-14 | Fixed the codestyle to match our clang-format rules. | Subv | 2 | -8/+11 |
2016-12-10 | Properly remove a thread from its wait_objects' waitlist when it is awoken by a timeout. | Subv | 2 | -1/+10 |
2016-12-09 | Moved the HLE command buffer translation task to ServerSession instead of the HLE handler superclass. | Subv | 2 | -2/+23 |
2016-12-09 | WaitSynch: Removed unused variables and reduced SharedPtr copies. | Subv | 3 | -13/+11 |
2016-12-08 | Added a framework for partially handling Session disconnections. | Subv | 4 | -9/+35 |
2016-12-08 | Use std::move where appropriate. | Subv | 5 | -7/+13 |
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-05 | Return an error code when connecting to a saturated port. | Subv | 2 | -4/+11 |
2016-12-05 | Split SessionRequestHandler::HandleSyncRequest into HandleSyncRequest, TranslateRequest and HandleSyncRequestImpl. | Subv | 2 | -0/+2 |
2016-12-05 | Kernel: Remove the Redirection handle type. | Subv | 1 | -2/+0 |
2016-12-05 | KServerPorts now have an HLE handler "template", which is inherited by all ServerSessions created from it. | Subv | 8 | -35/+60 |
2016-12-04 | Threading: Added some utility functions and const correctness. | Subv | 2 | -10/+22 |
2016-12-04 | Threading: Reworked the way our scheduler works. | Subv | 6 | -111/+76 |
2016-12-03 | Declare empty ServerSession and ClientSession constructors as default. | Subv | 2 | -4/+4 |
2016-12-01 | Fixed the rebase mistakes. | Subv | 7 | -51/+46 |
2016-12-01 | A bit of a redesign. | Subv | 6 | -215/+24 |
2016-12-01 | IPC/HLE: Associate the ClientSessions with their parent port's HLE interface if it exists. | Subv | 4 | -22/+15 |
2016-12-01 | Kernel/HLE: Service::Interface no longer inherits from any Kernel object, and is now its own standalone class. | Subv | 2 | -8/+44 |
2016-12-01 | fixup! Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inter Process Communication. | Subv | 3 | -4/+5 |
2016-12-01 | Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inter Process Communication. | Subv | 7 | -56/+233 |
2016-11-20 | Kernel/Loader: Grab the system mode from the NCCH ExHeader. | Subv | 2 | -6/+4 |
2016-11-19 | Kernel/Events: Log an error when trying to create Pulse events and timers. | Subv | 2 | -0/+10 |
2016-10-20 | Fix typos | Ricardo de Almeida Gonzaga | 2 | -2/+2 |
2016-09-22 | move ResetType to kernel.h | wwylele | 3 | -7/+6 |
2016-09-22 | implement wait tree widget | wwylele | 4 | -0/+16 |
2016-09-21 | Use negative priorities to avoid special-casing the self-include | Yuri Kunde Schlesner | 14 | -14/+14 |
2016-09-21 | Remove empty newlines in #include blocks. | Emmanuel Gil Peyrot | 29 | -74/+16 |
2016-09-19 | Manually tweak source formatting and then re-run clang-format | Yuri Kunde Schlesner | 15 | -64/+36 |
2016-09-18 | Sources: Run clang-format on everything. | Emmanuel Gil Peyrot | 30 | -419/+616 |
2016-09-15 | arm: ResetContext shouldn't be part of ARM_Interface. | bunnei | 1 | -1/+17 |
2016-08-02 | fix #1942 and adds a few IPC functions for descriptors | Lectem | 1 | -15/+103 |
2016-06-11 | Kernel/SVC: Implemented svcCreatePort. | Subv | 4 | -2/+11 |
2016-06-05 | Kernel: Added ClientPort and ServerPort classes. | Subv | 5 | -2/+135 |
2016-06-04 | Thread: update timeout when rerunning WaitSynch | wwylele | 1 | -0/+49 |
2016-05-31 | Fix parameter name in EnableNotification | mailwl | 1 | -0/+4 |
2016-05-30 | Switch context on the same thread if necessary | wwylele | 1 | -2/+6 |
2016-05-26 | Memory: Added necessary headers and removed unnecessary header | MerryMage | 1 | -0/+1 |
2016-05-21 | Kernel/Thread: Remove use of Memory::GetPointer | MerryMage | 1 | -1/+1 |
2016-05-17 | Set fpscr for new threads | Jannik Vogel | 1 | -0/+2 |
2016-05-14 | Memory: Fixed a regression caused by #1695 and #1689. | Subv | 1 | -0/+3 |
2016-05-13 | HLE/Applets: Give each applet its own block of heap memory, and use that when creating the framebuffer shared memory block. | Subv | 2 | -1/+30 |
2016-05-13 | Kernel: Account for automatically-allocated shared memories in the amount of used linear heap memory. | Subv | 1 | -0/+5 |
2016-05-13 | Kernel/SharedMemory: Log an error when Map fails. | Subv | 1 | -1/+10 |
2016-05-13 | Kernel: Implemented shared memory permissions. | Subv | 2 | -9/+47 |
2016-05-13 | Kernel/Memory: Remove the Shared Memory region from the legacy memory map. | Subv | 1 | -1/+0 |
2016-05-13 | Kernel/SharedMemory: Properly implemented shared memory support. | Subv | 2 | -65/+79 |
2016-05-13 | Kernel/SVC: Fixed the register order for svcCreateMemoryBlock. | Subv | 1 | -1/+1 |
2016-05-07 | Kernel/Threading: Warn when a thread can be scheduled in the Syscore (Core 1). | Subv | 1 | -0/+2 |
2016-05-07 | Kernel/Threads: Dynamically allocate the TLS region for threads in the BASE region of the linear heap. | Subv | 4 | -22/+74 |
2016-04-05 | Common: Remove Common::make_unique, use std::make_unique | MerryMage | 1 | -1/+2 |
2016-03-21 | session: Make helper functions constexpr | Lioncash | 1 | -6/+6 |
2016-03-21 | hle: Get rid of global access to g_reschedule | Lioncash | 1 | -1/+2 |
2016-03-13 | svc: Move ResetType enum to the kernel event header | Lioncash | 2 | -2/+8 |
2016-03-12 | svc: Make ResetType an enum class | Lioncash | 2 | -2/+2 |
2016-03-06 | Memory: Do correct Phys->Virt address translation for non-APP linheap | Yuri Kunde Schlesner | 2 | -2/+5 |
2016-02-21 | AudioCore: Skeleton Implementation | MerryMage | 1 | -1/+4 |
2016-02-12 | BitField: Make trivially copyable and remove assignment operator | MerryMage | 1 | -1/+1 |
2016-01-30 | Memory: Implement MMIO | MerryMage | 2 | -4/+8 |
2016-01-14 | HLE/SVC: Implement UnmapMemoryBlock. | Subv | 2 | -0/+28 |
2015-12-30 | HLE/Timers: Reset OneShot timers when they are acquired instead of when they're triggered. | Subv | 1 | -3/+3 |
2015-12-28 | SVC: Fixed ArbitrateAddress to behave as it does on hardware. | Subv | 2 | -9/+18 |
2015-12-01 | Kernel: Implement svcGetSystemInfo | Yuri Kunde Schlesner | 4 | -0/+12 |
2015-10-07 | Silence -Wsign-compare warnings. | Rohit Nirmal | 1 | -1/+1 |
2015-09-16 | general: Silence some warnings when using clang | Lioncash | 1 | -2/+4 |
2015-09-10 | General: Fix up doxygen comments | Lioncash | 3 | -6/+3 |
2015-08-28 | Kernel: Fix wrong linear heap base on titles using newer kernels | Yuri Kunde Schlesner | 1 | -1/+1 |
2015-08-27 | Kernel: Fix assertion failure when ControlMemory is called with size=0 | Yuri Kunde Schlesner | 1 | -0/+8 |
2015-08-27 | Core: Improve APT Shared Font hack | Yuri Kunde Schlesner | 2 | -2/+27 |
2015-08-16 | Kernel: Remove unused legacy heap MapBlock_* functions | Yuri Kunde Schlesner | 2 | -77/+0 |
2015-08-16 | Kernel: Implement svcGetProcessInfo in a basic way | Yuri Kunde Schlesner | 3 | -1/+15 |
2015-08-16 | Kernel: Add more infrastructure to support different memory layouts | Yuri Kunde Schlesner | 5 | -20/+138 |
2015-08-16 | Move core/mem_map.{cpp,h} => core/hle/kernel/memory.{cpp,h} | Yuri Kunde Schlesner | 3 | -1/+160 |
2015-08-16 | Memory: Move address type conversion routines to memory.cpp/h | Yuri Kunde Schlesner | 1 | -1/+0 |
2015-08-16 | Process: Store kernel compatibility version during loading | Yuri Kunde Schlesner | 2 | -3/+7 |
2015-08-16 | Kernel: Properly implement ControlMemory FREE and COMMIT | Yuri Kunde Schlesner | 4 | -23/+243 |
2015-08-16 | VMManager: Introduce names for used ResultCodes | Yuri Kunde Schlesner | 2 | -6/+11 |
2015-08-16 | VMManager: Make LogLayout log level configurable as a parameter | Yuri Kunde Schlesner | 3 | -5/+15 |
2015-08-16 | VMManager: Change block offsets to size_t | Yuri Kunde Schlesner | 2 | -3/+3 |
2015-07-26 | dyncom: Rename armdefs.h to armstate.h | Lioncash | 1 | -1/+1 |
2015-07-21 | Kernel/Scheduling: Clean up a thread's wait_objects when its scheduled. | Subv | 1 | -0/+8 |
2015-07-17 | Ensure all kernel objects are released during shutdown | Yuri Kunde Schlesner | 1 | -7/+14 |
2015-07-12 | Kernel: Add CodeSet case to Object::IsWaitable | Yuri Kunde Schlesner | 1 | -0/+1 |
2015-07-12 | Core: Fix applet includes using iwyu. | Emmanuel Gil Peyrot | 2 | -0/+4 |
2015-07-12 | Core: Properly configure address space when loading a binary | Yuri Kunde Schlesner | 5 | -14/+88 |
2015-07-12 | Kernel: Remove unused member from Event | Yuri Kunde Schlesner | 2 | -2/+1 |
2015-06-28 | Core: Cleanup file_sys includes. | Emmanuel Gil Peyrot | 1 | -1/+2 |
2015-06-28 | Core: Cleanup core includes. | Emmanuel Gil Peyrot | 2 | -1/+2 |
2015-06-28 | Common: Cleanup key_map includes. | Emmanuel Gil Peyrot | 4 | -6/+10 |
2015-06-23 | Add helpers to create IPC command buffer headers and descriptors | Yuri Kunde Schlesner | 1 | -0/+34 |
2015-06-17 | kernel: Fix svcWaitSynch to always acquire requested wait objects. | bunnei | 7 | -101/+37 |
2015-05-29 | Remove every trailing whitespace from the project (but externals). | Emmanuel Gil Peyrot | 5 | -11/+11 |
2015-05-27 | Kernel: Add VMManager to manage process address spaces | Yuri Kunde Schlesner | 2 | -0/+445 |
2015-05-21 | Kernel: Fix a warning introduced with ResourceLimit, and remove the fallback code to prevent it from happening again. | Emmanuel Gil Peyrot | 1 | -2/+1 |
2015-05-21 | Kernel: Move reschedules from SVCs to actual mechanisms that reschedule. | bunnei | 6 | -0/+20 |
2015-05-15 | Core/ResourceLimits: Implemented the basic structure of ResourceLimits. | Subv | 6 | -1/+286 |
2015-05-15 | Memmap: Re-organize memory function in two files | Yuri Kunde Schlesner | 6 | -6/+5 |
2015-05-14 | process: Get rid of warnings | Lioncash | 1 | -3/+3 |
2015-05-14 | thread: Fix a conditional check in Reschedule | Lioncash | 1 | -1/+1 |
2015-05-12 | Thread: Remove the idle thread | Yuri Kunde Schlesner | 2 | -44/+19 |
2015-05-12 | Core/Memory: Add TLS support for creating up to 300 threads | Subv | 3 | -7/+19 |
2015-05-12 | Core/Scheduling: Prepare the new priority in the thread queue when svcSetPriority is called | Subv | 1 | -0/+2 |
2015-05-12 | fixup! | Subv | 2 | -7/+3 |
2015-05-11 | Core/HLE: Implemented the SVCs GetProcessId and GetProcessIdOfThread | Subv | 5 | -2/+19 |
2015-05-11 | Thread: Correctly set main thread initial stack position | Yuri Kunde Schlesner | 3 | -5/+4 |
2015-05-11 | fixup! Set the TLS address in the scheduler | Subv | 2 | -2/+7 |
2015-05-11 | Core/Memory: Give every emulated thread it's own TLS area. | Subv | 3 | -4/+22 |
2015-05-11 | Kernel: Zero-fill shared memory blocks when mapping | Yuri Kunde Schlesner | 1 | -0/+8 |
2015-05-11 | Kernel: Capture SharedMemory attributes at creation, not when mapping | Yuri Kunde Schlesner | 2 | -16/+29 |
2015-05-09 | Common: Remove the BIT macro | Yuri Kunde Schlesner | 1 | -2/+2 |
2015-05-09 | Memory: Re-organize and rename memory area address constants | Yuri Kunde Schlesner | 2 | -3/+4 |
2015-05-09 | Kernel: Remove unused g_main_thread variable | Yuri Kunde Schlesner | 3 | -5/+1 |
2015-05-09 | Process: Rename StaticAddressMapping => AddressMapping | Yuri Kunde Schlesner | 2 | -5/+5 |
2015-05-09 | Process: Add more documentation to the class members | Yuri Kunde Schlesner | 1 | -2/+16 |
2015-05-09 | Process: Use BitField to store process flags | Yuri Kunde Schlesner | 2 | -16/+24 |
2015-05-09 | Process: Support parsing of exheader kernel caps | Yuri Kunde Schlesner | 2 | -4/+72 |
2015-05-09 | Kernel: Remove g_program_id | Yuri Kunde Schlesner | 2 | -8/+0 |
2015-05-09 | Kernel: Introduce skeleton Process class to hold process data | Yuri Kunde Schlesner | 4 | -19/+101 |
2015-05-07 | Common: Remove common.h | Yuri Kunde Schlesner | 9 | -8/+14 |
2015-05-07 | Move typedefs from kernel.h to more appropriate places | Yuri Kunde Schlesner | 1 | -10/+1 |
2015-05-02 | Kernel: Properly initialize and shutdown all modules. | bunnei | 4 | -9/+20 |
2015-04-14 | Kernel: Use the correct format string for u64 hex. | Emmanuel Gil Peyrot | 1 | -1/+1 |
2015-04-10 | SVC: Update various SVCs to cause a reschedule. | bunnei | 1 | -4/+0 |
2015-04-10 | Kernel: Implemented priority inheritance for mutexes. | bunnei | 3 | -4/+22 |
2015-04-10 | Thread: Implement priority boost for starved threads. | bunnei | 2 | -22/+51 |
2015-04-10 | Kernel: Fixed default thread priority. | bunnei | 2 | -5/+4 |
2015-04-09 | Initialize base address to 0x0 | Gareth Higgins | 1 | -0/+1 |
2015-02-20 | Misc cleanup of common and related functions | archshift | 1 | -2/+3 |
2015-02-12 | Build: Fixed some warnings | Subv | 3 | -4/+4 |
2015-02-11 | Asserts: break/crash program, fit to style guide; log.h->assert.h | archshift | 7 | -15/+13 |
2015-02-10 | Scheduler refactor Pt. 1 | Kevin Hartman | 3 | -223/+258 |
2015-02-10 | Mutex: Locks should be recursive. | bunnei | 2 | -16/+20 |
2015-02-03 | core: Fix some warnings on OSX | Lioncash | 1 | -1/+0 |
2015-02-02 | Kernel: Stop creating useless Handles during object creation | Yuri Kunde Schlesner | 12 | -36/+17 |
2015-02-02 | Kernel: Make WaitObjects share ownership of Threads waiting on them | Yuri Kunde Schlesner | 6 | -12/+17 |
2015-02-02 | Explicitly instantiate constructors/destructors for Kernel objects | Yuri Kunde Schlesner | 16 | -8/+50 |
2015-02-02 | Mutex: Replace g_mutex_held_locks with a set inside Thread | Yuri Kunde Schlesner | 3 | -23/+18 |
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 | 2 | -9/+1 |
2015-02-02 | Kernel: Introduce unique Object ids for debugging | Yuri Kunde Schlesner | 4 | -8/+16 |
2015-02-02 | Kernel: Use separate Handle tables for CoreTiming userdata | Yuri Kunde Schlesner | 4 | -18/+25 |
2015-02-02 | Kernel: Remove previous scheduled event when a Timer is re-Set | Yuri Kunde Schlesner | 1 | -0/+3 |
2015-02-02 | Thread: Modernize two functions that slipped through previous rebases | Yuri Kunde Schlesner | 3 | -15/+13 |
2015-02-01 | arm: Clean up ARMul_State | Lioncash | 1 | -1/+1 |
2015-01-30 | shared_memory: Fix assignments in SharedMemory::Map | Lioncash | 2 | -4/+4 |
2015-01-30 | Kernel: Mark all appropriate kernel objects as "final" | Yuri Kunde Schlesner | 7 | -8/+7 |
2015-01-30 | Remove result.h InvalidHandle | Yuri Kunde Schlesner | 1 | -1/+2 |
2015-01-30 | Kernel: Convert Event to not use Handles | Yuri Kunde Schlesner | 2 | -83/+51 |
2015-01-30 | Kernel: Convert Timer to (mostly) not use Handles | Yuri Kunde Schlesner | 2 | -104/+72 |
2015-01-30 | Kernel: Convert Mutex to not use Handles | Yuri Kunde Schlesner | 2 | -101/+82 |
2015-01-30 | Kernel: Convert AddressArbiter to not use Handles | Yuri Kunde Schlesner | 2 | -32/+31 |
2015-01-30 | Kernel: Convert Semaphore to not use Handles | Yuri Kunde Schlesner | 2 | -61/+61 |
2015-01-30 | Kernel: Convert SharedMemory to not use Handles | Yuri Kunde Schlesner | 2 | -71/+54 |
2015-01-30 | Move VAddr/PAddr typedefs to kernel.h | Yuri Kunde Schlesner | 1 | -0/+5 |
2015-01-30 | Kernel: Remove useless/duplicated comments; mark functions static | Yuri Kunde Schlesner | 6 | -32/+8 |
2015-01-22 | Thread: Fix WaitSynchronization1 to not set register 1 on thread wakeup. | bunnei | 2 | -22/+42 |
2015-01-22 | Thread: Use std::find in CheckWait_WaitObject. | bunnei | 1 | -4/+5 |
2015-01-22 | Mutex: Cleanup and remove redundant code. | bunnei | 3 | -47/+29 |
2015-01-22 | Kernel: Renamed some functions for clarity. | bunnei | 7 | -10/+10 |
2015-01-22 | Kernel: Changed "ShouldWait" to return bool and "Acquire" to return void. | bunnei | 8 | -64/+39 |
2015-01-22 | WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" pure virtual. | bunnei | 8 | -21/+20 |
2015-01-22 | Event: Fix implementation of "non-sticky" events. | bunnei | 1 | -0/+4 |
2015-01-22 | Session: Change to a WaitObject. | bunnei | 3 | -2/+9 |
2015-01-22 | Kernel: Reschedule on SignalEvent and SendSyncRequest, fix some bugs. | bunnei | 1 | -1/+1 |
2015-01-22 | Mutex: Fix a bug where the thread should not wait if it already has the mutex. | bunnei | 1 | -1/+4 |
2015-01-22 | Kernel: Moved Wait and Acquire to WaitObject, added way to retrieve a WaitObject safely. | bunnei | 3 | -18/+57 |
2015-01-22 | AddressArbiter: Changed to Kernel::Object, big cleanup, removed code that made no sense. | bunnei | 4 | -35/+42 |
2015-01-22 | Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks. | bunnei | 8 | -112/+43 |
2015-01-22 | WaitSynchronizationN: Refactor to fix several bugs | bunnei | 7 | -54/+49 |
2015-01-22 | Kernel: Separate WaitSynchronization into Wait and Acquire methods. | bunnei | 7 | -14/+54 |
2015-01-22 | WaitSynchronizationN: Implement return values | bunnei | 9 | -56/+139 |
2015-01-22 | Event: Fixed some bugs and cleanup (Subv) | bunnei | 2 | -54/+13 |
2015-01-22 | Thread: Keep track of multiple wait objects. | bunnei | 3 | -16/+30 |
2015-01-22 | Event: Get rid of permanent_lock hack. | bunnei | 2 | -36/+8 |
2015-01-22 | WaitObject: Added RemoveWaitingThread, fixed a bug, and cleanup. | bunnei | 2 | -4/+17 |
2015-01-22 | Kernel: Added WaitObject and changed "waitable" objects inherit from it. | bunnei | 8 | -71/+73 |
2015-01-20 | core: Fix a few docstrings | Lioncash | 2 | -2/+2 |
2015-01-13 | AddrArbiter: Implement arbitration types 3 and 4. | Subv | 2 | -3/+20 |
2015-01-11 | Thread: Prevent waking a thread multiple times. | Subv | 1 | -0/+3 |
2015-01-09 | Kernel: Start using boost::intrusive_ptr for lifetime management | Yuri Kunde Schlesner | 10 | -76/+75 |
2015-01-09 | Kernel: Don't re-assign object's handle when duplicating one | Yuri Kunde Schlesner | 2 | -2/+3 |
2015-01-09 | Thread: Fix nullptr access in a logging function | Yuri Kunde Schlesner | 1 | -1/+2 |
2015-01-09 | Thread: Rename thread_queue => thread_list | Yuri Kunde Schlesner | 1 | -6/+6 |
2015-01-09 | Thread: Reduce use of Handles and move some funcs to inside the class. | Yuri Kunde Schlesner | 9 | -281/+190 |
2015-01-09 | Kernel: Move Thread's definition to the header file | Yuri Kunde Schlesner | 3 | -53/+67 |
2015-01-09 | Move ThreadContext to core/core.h and deal with the fallout | Yuri Kunde Schlesner | 2 | -4/+6 |
2015-01-09 | SVC: Implemented the Timer service calls. | Subv | 5 | -1/+194 |
2015-01-09 | SVC: Fixed SleepThread. | Subv | 2 | -8/+39 |
2015-01-08 | Threads: Use a dummy idle thread when no other are ready. | Subv | 3 | -1/+35 |
2015-01-07 | Common: Clean up ThreadQueueList | Yuri Kunde Schlesner | 1 | -1/+1 |
2015-01-04 | Mutex: Add the calling thread to the waiting list when needed | Subv | 1 | -2/+2 |
2015-01-03 | AddressArbiter: Ported arbitration type 2 from 3dmoo. | Subv | 1 | -0/+11 |
2014-12-28 | Kernel: New handle manager | Yuri Kunde Schlesner | 9 | -142/+189 |
2014-12-28 | Kernel: Replace GetStaticHandleType by HANDLE_TYPE constants | Yuri Kunde Schlesner | 8 | -15/+15 |
2014-12-28 | Rename ObjectPool to HandleTable | Yuri Kunde Schlesner | 8 | -41/+41 |
2014-12-21 | License change | purpasmart96 | 15 | -16/+16 |
2014-12-21 | Thread: Wait current thread on svc_SleepThread | bunnei | 2 | -21/+33 |
2014-12-20 | Clean up some warnings | Chin | 2 | -5/+5 |
2014-12-20 | Kernel: Implement support for current thread pseudo-handle | Yuri Kunde Schlesner | 3 | -2/+16 |
2014-12-18 | Filesystem/Archives: Implemented the SaveData archive | Subv | 2 | -0/+7 |
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 | 3 | -534/+1 |
2014-12-15 | Remove SyncRequest from K::Object and create a new K::Session type | Yuri Kunde Schlesner | 3 | -38/+75 |
2014-12-13 | Kernel/Semaphore: Small style change | Subv | 1 | -1/+1 |
2014-12-13 | Kernel/Semaphores: Invert the available count checking. | Subv | 1 | -11/+9 |
2014-12-13 | Kernel/Semaphores: Addressed some issues. | Subv | 2 | -32/+18 |
2014-12-13 | Semaphore: Removed an unneeded function | Subv | 1 | -5/+0 |
2014-12-13 | Semaphores: Addressed some style issues | Subv | 1 | -6/+5 |
2014-12-13 | Semaphore: Implemented the initial_count parameter. | Subv | 2 | -5/+7 |
2014-12-13 | SVC: Implemented ReleaseSemaphore. | Subv | 2 | -16/+64 |
2014-12-13 | SVC: Implemented svcCreateSemaphore | Subv | 2 | -0/+98 |
2014-12-13 | kernel: Remove unused log arguments | Lioncash | 1 | -3/+3 |
2014-12-13 | Convert old logging calls to new logging macros | Yuri Kunde Schlesner | 6 | -72/+45 |
2014-12-09 | Thread: Fixed to wait on address when in arbitration. | bunnei | 3 | -11/+31 |
2014-12-07 | Make OpenDirectory fail if the directory doesn't exist | archshift | 1 | -0/+5 |
2014-12-07 | Mutex: Remove some forward declarations | Subv | 1 | -16/+15 |
2014-12-07 | Mutex: Release all held mutexes when a thread exits. | Subv | 3 | -22/+56 |
2014-12-06 | Mutex: Properly lock the mutex when a thread enters it | Subv | 1 | -12/+9 |
2014-12-04 | Threads: Remove a redundant function. | Subv | 1 | -9/+1 |
2014-12-04 | Threads: Implemented a sequential thread id | Subv | 2 | -4/+19 |
2014-12-04 | Updated archive.cpp functions for proper error handling | archshift | 2 | -65/+36 |
2014-12-04 | SVC: Implemented GetThreadId. | Subv | 2 | -0/+19 |
2014-12-04 | kernel: Shorten GetCount | Lioncash | 1 | -6/+3 |
2014-12-04 | kernel: Make some functions const | Lioncash | 2 | -4/+4 |
2014-11-26 | Thread: Check that thread is actually in "wait state" when verifying wait. | bunnei | 1 | -1/+1 |
2014-11-26 | Mutex: Changed behavior to always release mutex for all threads. | bunnei | 1 | -8/+7 |
2014-11-25 | Implemented RenameDirectory in FS:USER | archshift | 2 | -0/+35 |
2014-11-25 | Implemented RenameFile in FS:USER | archshift | 2 | -0/+35 |
2014-11-24 | Use pointers instead of passing handles around in some functions. | Yuri Kunde Schlesner | 1 | -19/+15 |
2014-11-24 | Remove duplicated docs/update them for changed parameters. | Yuri Kunde Schlesner | 9 | -78/+0 |
2014-11-24 | HLE: Revamp error handling throrough the HLE code | Yuri Kunde Schlesner | 13 | -201/+187 |
2014-11-23 | Added DeleteFile and DeleteDirectory functions to FS:USER and the archives. | archshift | 2 | -1/+47 |
2014-11-19 | Remove trailing spaces in every file but the ones imported from SkyEye, AOSP or generated | Emmanuel Gil Peyrot | 12 | -42/+42 |
2014-11-19 | Add static to some variables | Lioncash | 1 | -22/+22 |
2014-11-19 | Kernel:Add missing permissions in shared memory & svc | purpasmart96 | 1 | -5/+9 |
2014-11-18 | Remove extraneous semicolons | Lioncash | 1 | -1/+1 |
2014-11-18 | Archive: Fixed to not destroy archive handle on close. | bunnei | 1 | -3/+3 |
2014-11-18 | Archive: Fixed close archive before freeing. | bunnei | 1 | -1/+1 |
2014-11-18 | FS_User: Support FileSye::Path in a more generic way. | bunnei | 1 | -0/+11 |
2014-11-18 | FileSys: Updated backend code to use FileSys::Path instead of string for paths. | bunnei | 2 | -10/+10 |
2014-11-14 | Fix two format strings. | Lioncash | 1 | -1/+1 |
2014-11-02 | Added CreateDirectory function to service/fs.cpp, and in Archive. | archshift | 2 | -2/+25 |
2014-10-30 | Fix some warnings | Sean | 1 | -3/+3 |
2014-10-26 | Add `override` keyword through the code. | Yuri Kunde Schlesner | 6 | -35/+35 |
2014-10-06 | FileSys: split the constructor into an Open method, in order to notify the opener something went wrong. | Emmanuel Gil Peyrot | 1 | -0/+3 |
2014-10-06 | FileSys/Kernel: Implement SetSize service call for File objects. | Emmanuel Gil Peyrot | 1 | -0/+8 |
2014-09-21 | Use the citra user path for the sdmc directory | archshift | 1 | -2/+1 |
2014-09-17 | Kernel: Implement the Close command for Archive, File and Directory. | Emmanuel Gil Peyrot | 2 | -0/+43 |
2014-09-17 | Kernel: Add a Directory object and a getter for it from an Archive object. | Emmanuel Gil Peyrot | 3 | -0/+91 |
2014-09-17 | Kernel: Add a File object and a getter for it from an Archive object. | Emmanuel Gil Peyrot | 2 | -0/+118 |
2014-09-15 | Core: Get rid of unnecessary switch statement in Kernel | Lioncash | 1 | -41/+2 |
2014-09-09 | core: Prune redundant includes | archshift | 3 | -6/+0 |
2014-08-31 | Threading: Fix thread starting to execute first instruction correctly. | bunnei | 1 | -0/+5 |
2014-08-28 | Threading: Fix thread starting to execute first instruction correctly. | bunnei | 1 | -0/+5 |
2014-08-23 | Added FS functions to Archive and Archive_RomFS | archshift | 1 | -3/+31 |
2014-08-19 | Core: Use std::array for managing kernel object space | Lioncash | 2 | -5/+5 |
2014-08-18 | Core: Alter the kernel string functions to use std::string instead of const char*. | Lioncash | 8 | -25/+22 |
2014-08-07 | Thread: Added more descriptive comment to WaitCurrentThread. | bunnei | 2 | -2/+10 |
2014-08-06 | AddressArbiter: Removed unnecessary HLE::Reschedule. | bunnei | 1 | -1/+0 |
2014-08-06 | AddressArbiter: Fixed bug with break statements missing from case statements. | bunnei | 1 | -0/+2 |
2014-08-06 | Kernel: Updated Event and Mutex to specify handle that they are blocking for. | bunnei | 2 | -2/+2 |
2014-07-09 | Kernel: Added preliminary support for address arbiters. | bunnei | 3 | -1/+124 |
2014-07-09 | Thread: Added functions to resume threads from address arbitration. | bunnei | 2 | -0/+44 |
2014-07-05 | SharedMemory: Updated MapSharedMemory to use an enum for permissions. | bunnei | 2 | -6/+27 |
2014-07-05 | Kernel: Added support for shared memory objects. | bunnei | 2 | -0/+132 |
2014-07-05 | Archive: Added Init/Shutdown methods to reset kernel archive state. | bunnei | 3 | -0/+19 |
2014-07-05 | FileSys: Added preliminary support for applications reading the RomFS archive. | bunnei | 2 | -10/+105 |
2014-06-27 | Kernel: Added stubbed code to support creation of kernel Archive objects. | bunnei | 3 | -0/+85 |
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 | 2 | -0/+10 |
2014-06-13 | Event: Updated several log messages to be assertions. | bunnei | 1 | -16/+8 |
2014-06-13 | Thread: Renamed occurrences of "t" to "thread" to improve readability. | bunnei | 1 | -48/+45 |
2014-06-13 | Thread: Cleaned up VerifyWait, fixed issue where nullptr msg could unnecessarily be logged. | bunnei | 1 | -9/+7 |
2014-06-13 | HLE: Removed usnused EatCycles function. | bunnei | 1 | -9/+0 |
2014-06-13 | Thread: Moved position of * in arguments. | bunnei | 1 | -2/+2 |
2014-06-13 | Thread: Updated VerifyWait to be more readable (but functionally the same). | bunnei | 1 | -4/+3 |
2014-06-13 | HLE: Updated all uses of NULL to nullptr (to be C++11 compliant) | bunnei | 3 | -9/+9 |
2014-06-13 | Kernel: Updated various kernel function "name" arguments to be const references. | bunnei | 4 | -6/+6 |
2014-06-13 | HLE: Updated various handle debug assertions to be more clear. | bunnei | 2 | -3/+3 |
2014-06-13 | Mutex: Moved ReleaseMutex iterator declaration to be inside while loop. | bunnei | 1 | -2/+1 |
2014-06-13 | Kernel: Updated several member functions to be const | bunnei | 4 | -11/+11 |
2014-06-13 | Thread: Fixed bug with ResetThread where cpu_registers[15] was being incorrectly set | bunnei | 1 | -1/+1 |
2014-06-13 | Kernel: Made SyncRequest not pure virtual, with a default implementation of error (as this is not required for all kernel objects) | bunnei | 3 | -23/+4 |
2014-06-13 | Kernel: Added real support for thread and event blocking | bunnei | 5 | -48/+165 |
2014-06-05 | kernel: changed current default thread priority back to 0x30 - I think this is more correct | bunnei | 1 | -1/+1 |
2014-06-03 | svc: added optional name field to Event and Mutex (used for debugging) | bunnei | 4 | -8/+21 |
2014-06-03 | kernel: moved position of * for GetTypeName and GetName | bunnei | 1 | -2/+2 |
2014-06-02 | svc: added GetThreadPriority and SetThreadPriority, added (incomplete) DuplicateHandle support | bunnei | 2 | -0/+51 |
2014-06-02 | kernel: changed main thread priority to default, updated Kernel::Reschedule to use PrepareReschedule | bunnei | 3 | -4/+6 |
2014-06-01 | thread: updated Reschedule to sit at a synchronization barrier when no other threads are ready for execution | bunnei | 1 | -0/+18 |
2014-06-01 | event: added a hackish ability to set an event as "locked" to its current state, cleaned up some comments | bunnei | 2 | -4/+32 |
2014-05-30 | mutex: fixed typo in ReleaseMutex | bunnei | 1 | -1/+3 |
2014-05-30 | event: added support for ClearEvent, fixed a bug with CreateEvent, fixed some comments | bunnei | 2 | -9/+14 |
2014-05-28 | mutex: added preliminary SyncRequest/WaitSynchronization, added some comments/assertions | bunnei | 1 | -0/+6 |
2014-05-28 | event: fixed typos and updated CMakeLists | bunnei | 1 | -1/+1 |
2014-05-28 | event: added SetEventLocked method to change status an events lock | bunnei | 2 | -0/+18 |
2014-05-28 | kernel: added event module to support creation of CTR "Event" objects | bunnei | 2 | -0/+119 |
2014-05-27 | mutex: removed docstring comment that is no longer relevant | bunnei | 1 | -1/+0 |
2014-05-27 | mutex: added additional docstrings | bunnei | 1 | -0/+2 |
2014-05-27 | kernel: added WaitSynchronization method to Kernel::Object | bunnei | 3 | -0/+29 |
2014-05-27 | kernel: updated SyncRequest to take boolean thread wait result as a parameter | bunnei | 3 | -5/+20 |
2014-05-27 | kernel: added enum for known CurrentThread and CurrentProcess handles | bunnei | 1 | -0/+5 |
2014-05-27 | kernel: add a SyncRequest method to KernelObject for use with svcSendSyncRequest | bunnei | 3 | -0/+11 |
2014-05-23 | thread: renamed "WaitCurThread" to "WaitCurrentThread", removed unused "reason" argument | bunnei | 2 | -4/+4 |
2014-05-23 | thread: removed unused SwitchContext/Reschedule reason field, added missing arg parameter to SVC CreateThread | bunnei | 2 | -4/+4 |
2014-05-23 | kernel: refactored function naming to remove "__" prefix | bunnei | 5 | -62/+72 |
2014-05-23 | thread: moved ThreadStatus/WaitType to header, added support for arg on CreateThread, added correct CPSR reset | bunnei | 2 | -35/+40 |
2014-05-22 | thread: fixed bug where result of __NextThread was not being properly checked when NULL | bunnei | 1 | -1/+1 |
2014-05-21 | mutex: refactored the interface to code to return a Mutex* handle | bunnei | 2 | -3/+13 |
2014-05-21 | mutex: initial commit of HLE module | bunnei | 2 | -0/+148 |
2014-05-21 | kernel: fixed include, in general include "common.h" not "common_types.h" | bunnei | 1 | -1/+1 |
2014-05-21 | thread: added correct lowest thread priority, added a thread priority check, and added some comments | bunnei | 2 | -6/+10 |
2014-05-21 | thread: exposed ResumeThreadFromWait function for use in other kernel modules | bunnei | 2 | -8/+11 |
2014-05-21 | thread: moved threading calls to the Kernel namespace | bunnei | 3 | -101/+115 |
2014-05-21 | ARM_Interface: added SaveContext and LoadContext functions for HLE thread switching | bunnei | 1 | -36/+2 |
2014-05-21 | renamed "syscall" module to "svc" (more accurate naming) | bunnei | 1 | -1/+1 |
2014-05-21 | thread: whitespace change - fixed * and & placement | bunnei | 2 | -27/+27 |
2014-05-21 | - created a Kernel namespace | bunnei | 4 | -67/+79 |
2014-05-20 | thread: added declaration for __KernelReschedule to be used by syscall module | bunnei | 1 | -0/+3 |
2014-05-19 | - updated service(s) to be KernelObject's | bunnei | 1 | -4/+5 |
2014-05-19 | - moved Handle/Result definitions to kernel.h | bunnei | 2 | -3/+2 |
2014-05-17 | changed a comment | bunnei | 2 | -2/+2 |
2014-05-17 | - added enum ThreadProcessorId | bunnei | 2 | -53/+107 |
2014-05-17 | - replaced KERNELOBJECT_MAX_NAME_LENGTH with KERNEL_MAX_NAME_LENGTH | bunnei | 3 | -8/+12 |
2014-05-16 | completely gutted/refactored threading code to be simpler | bunnei | 2 | -658/+230 |
2014-05-16 | changed "UID" to "Handle" to be a little more consistent with CTR naming | bunnei | 2 | -18/+21 |
2014-05-15 | - added helper function for __KernelCreateThread | bunnei | 2 | -4/+76 |
2014-05-15 | changed primary thread priority to 0x30 - this is typical, not 0x31 | bunnei | 1 | -1/+2 |
2014-05-14 | fixed thread reset to not set stack address | bunnei | 1 | -1/+1 |
2014-05-14 | various cleanups / remove unused code | bunnei | 2 | -65/+29 |
2014-05-14 | added a bunch of threading code, recycled from PPSSPP, with lots of hacks in for 3DS... doesn't really do much yet. Just a jumping off point | bunnei | 2 | -70/+543 |
2014-05-14 | - added __KernelLoadExec function | bunnei | 2 | -13/+35 |
2014-05-10 | added initial kernel/thread modules | bunnei | 4 | -0/+527 |