| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-09-15 | Kernel/Memory: Changed GetPhysicalPointer so that it doesn't go through the ↵ | Subv | |
| current process' page table to obtain a pointer. | |||
| 2017-09-10 | Kernel/Memory: Switch the current page table when a new process is scheduled. | Subv | |
| 2017-09-10 | Kernel/Memory: Give each Process its own page table. | Subv | |
| The loader is in charge of setting the newly created process's page table as the main one during the loading process. | |||
| 2017-08-23 | Merge pull request #2839 from Subv/global_kernel_lock | James Rowe | |
| 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). | |||
| 2017-08-22 | Merge pull request #2893 from Subv/not_schedule_main_thread | bunnei | |
| Kernel/Threads: Don't immediately switch to the new main thread when loading a new process. | |||
| 2017-08-22 | Kernel/HLE: Use a mutex to synchronize access to the HLE kernel state ↵ | Subv | |
| between the cpu thread and any other possible threads that might touch the kernel (network thread, etc). This mutex is acquired in SVC::CallSVC, ie, as soon as the guest application enters the HLE kernel, and should be acquired by the aforementioned threads before modifying kernel structures. | |||
| 2017-08-21 | Kernel/Threads: Don't immediately switch to the new main thread when loading ↵ | Subv | |
| a new process. This is necessary for loading multiple processes at the same time. The main thread will be automatically scheduled when necessary once the scheduler runs. | |||
| 2017-08-21 | Warnings: Add UNREACHABLE macros to switches that contemplate all possible ↵ | Subv | |
| values. | |||
| 2017-07-22 | Merge pull request #2799 from yuriks/virtual-cached-range-flush | Weiyi Wang | |
| Add address conversion functions returning optional, Add function to flush virtual region from rasterizer cache | |||
| 2017-06-29 | Merge pull request #2793 from Subv/replyandreceive | Sebastian Valle | |
| Kernel/SVC: Partially implemented svcReplyAndReceive | |||
| 2017-06-29 | Kernel/SVC: Pass the current thread as a parameter to ↵ | Subv | |
| ClientSession::SendSyncRequest. | |||
| 2017-06-25 | Kernel/Sessions: Clean up the list of pending request threads of a session ↵ | Subv | |
| when the client endpoint is closed. | |||
| 2017-06-25 | Kernel/ServerSession: Keep track of which threads have issued sync requests. | Subv | |
| 2017-06-23 | Kernel: Implement AcceptSession SVC | Yuri Kunde Schlesner | |
| 2017-06-21 | Memory: Make PhysicalToVirtualAddress return a boost::optional | Yuri Kunde Schlesner | |
| And fix a few places in the code to take advantage of that. | |||
| 2017-06-21 | Kernel/IPC: Support translation of null handles | Yuri Kunde Schlesner | |
| Missed this in my first implementation. Thanks to @wwylele for pointing out that this was missing. | |||
| 2017-06-21 | Merge pull request #2789 from yuriks/misc-kernel | Weiyi Wang | |
| Trivial no-op additions | |||
| 2017-06-20 | Merge pull request #2790 from yuriks/remove-movefrom | Yuri Kunde Schlesner | |
| Remove ResultVal::MoveFrom | |||
| 2017-06-18 | ResultVal: Remove MoveFrom() | Yuri Kunde Schlesner | |
| Replace it with std::move(result_val).Unwrap(), or Foo().Unwrap() in case you already have an rvalue. | |||
| 2017-06-18 | Kernel: Add comment about the extended linear heap area | Yuri Kunde Schlesner | |
| 2017-06-18 | Kernel/IPC: Make HLERequestContext usable from outside kernel | Yuri Kunde Schlesner | |
| 2017-06-11 | Kernel/IPC: Use boost::small_vector for HLE context objects | Yuri Kunde Schlesner | |
| 2017-06-11 | Kernel: Allow clearing request_objects to re-use buffer space | Yuri Kunde Schlesner | |
| Reduces the necessary allocation to max(in_handles, out_handles) rather than (in_handles + out_handles). | |||
| 2017-06-11 | Kernel: Basic support for IPC translation for HLE services | Yuri Kunde Schlesner | |
| 2017-06-11 | Kernel: Add methods in HLERequestContext abstracting handle creation | Yuri Kunde Schlesner | |
| 2017-06-11 | ServiceFramework: Use separate copy of command buffer | Yuri Kunde Schlesner | |
| Copy the IPC command buffer to/from the request context before/after the handler is invoked. This is part of a move away from using global data for handling IPC requests. | |||
| 2017-06-08 | Merge pull request #2756 from yuriks/service-framework | Yuri Kunde Schlesner | |
| New service framework | |||
| 2017-06-08 | Session: Remove/add some forward declarations | Yuri Kunde Schlesner | |
| 2017-06-08 | Kernel: Ensure objects are kept alive during ClientSession disconnection | Yuri Kunde Schlesner | |
| Fixes #2760 | |||
| 2017-06-08 | Service: Add new ServiceFramework framework for writing HLE services | Yuri Kunde Schlesner | |
| The old "Interface" class had a few problems such as using free functions (Which didn't allow you to write the service handler as if it were a regular class.) which weren't very extensible. (Only received one parameter with a pointer to the Interface object.) The new ServiceFramework aims to solve these problems by working with member functions and passing a generic context struct as parameter. This struct can be extended in the future without having to update all existing service implementations. | |||
| 2017-06-06 | Kernel: Remove some unnecessary namespace qualifications | Yuri Kunde Schlesner | |
| 2017-06-06 | Kernel: Add a dedicated SetHleHandler method to ServerPort/ServerSession | Yuri Kunde Schlesner | |
| This allows attaching a HLE handle to a ServerPort at any point after it is created, allowing port/session creation to be generic between HLE and regular services. | |||
| 2017-06-05 | HLE: Move SessionRequestHandler from Service:: to Kernel:: | Yuri Kunde Schlesner | |
| Most of the code that works with this is or will be in the kernel, so it's a more appropriate place for it to be. | |||
| 2017-05-29 | Kernel: Move HandleTable to a separate file | Yuri Kunde Schlesner | |
| 2017-05-29 | Kernel: Move WaitObject to a separate file | Yuri Kunde Schlesner | |
| Now that HandleTable doesn't directly depend on WaitObject anymore, this can be separated from the main kernel.h header. | |||
| 2017-05-29 | Kernel: Removed HandleTable::GetWaitObject | Yuri Kunde Schlesner | |
| This isn't necessary anymore since plain Get works correctly for WaitObjects. | |||
| 2017-05-29 | Kernel: Extract dynamic Object pointer cast into its own function | Yuri Kunde Schlesner | |
| 2017-05-24 | Kernel: Centralize error definitions in errors.h | Yuri Kunde Schlesner | |
| 2017-05-21 | Merge pull request #2406 from Subv/session_disconnect | Yuri Kunde Schlesner | |
| Kernel: Properly update port counters on session disconnection. | |||
| 2017-05-21 | Kernel/Sessions: Remove the ClientSession::Create function. | Subv | |
| It is not meant to be used by anything other than CreateSessionPair. | |||
| 2017-05-15 | Kernel: Remove a now unused enum and variable regarding a session's status. | Subv | |
| 2017-05-15 | Kernel: Use a Session object to keep track of the status of a Client/Server ↵ | Subv | |
| session pair. Reduce the associated port's connection count when a ServerSession is destroyed. | |||
| 2017-05-09 | Kernel: Map special regions according to ExHeader | Yuri Kunde Schlesner | |
| This replaces the hardcoded VRAM/DSP mappings with ones made based on the ExHeader ARM11 Kernel caps list. While this has no visible effect for most applications (since they use a standard set of mappings) it does improve support for system modules and n3DS exclusives. | |||
| 2017-05-09 | DSP: Create backing memory for entire DSP RAM | Yuri Kunde Schlesner | |
| Also move address space mapping out of video_core. | |||
| 2017-02-27 | Timer: restore missing signaled=true from #2421 | wwylele | |
| 2017-02-27 | Fix log entry in timer::signal (#2600) | B3n30 | |
| 2017-02-26 | Doxygen: Amend minor issues (#2593) | Mat M | |
| Corrects a few issues with regards to Doxygen documentation, for example: - Incorrect parameter referencing. - Missing @param tags. - Typos in @param tags. and a few minor other issues. | |||
| 2017-02-26 | Merge pull request #2587 from yuriks/status-bar | Yuri Kunde Schlesner | |
| Replace built-in Profiler with indicators in status bar | |||
| 2017-02-26 | Core: Remove unnecessary include in thread.h | Yuri Kunde Schlesner | |
| 2017-02-21 | Timers: Immediately signal the timer if it was started with an initial value ↵ | Subv | |
| of 0. | |||
