| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-07-25 | service/nifm: Deduplicate interface code | Lioncash | |
| Rather than having the same code for each nifm service variant, we can centralize it on one class and get rid of a bit of extra code. | |||
| 2018-07-25 | service: Add pm services | Lioncash | |
| Adds the skeleton for the process management services based off information on Switch Brew. | |||
| 2018-07-25 | service: Add the es service | Lioncash | |
| Adds the skeleton for the ETicket service based off the information on Switch Brew | |||
| 2018-07-25 | Merge pull request #801 from lioncash/time | Mat M | |
| time: Add the time:a service | |||
| 2018-07-25 | Merge pull request #804 from lioncash/log | Mat M | |
| svc: Log parameters in SetMemoryAttribute() | |||
| 2018-07-25 | time: Add the time:a service | Lioncash | |
| Given we already have time:s and time:u, we should also have time:a | |||
| 2018-07-25 | Merge pull request #803 from MerryMage/core_timing_util | bunnei | |
| core_timing: Split off utility functions into core_timing_util | |||
| 2018-07-25 | Merge pull request #800 from lioncash/set | bunnei | |
| set_sys: Implement SetColorSetId() | |||
| 2018-07-24 | Merge pull request #806 from lioncash/friend | bunnei | |
| friend: Deduplicate interfaces | |||
| 2018-07-24 | Merge pull request #805 from lioncash/sign | bunnei | |
| svc: Resolve sign comparison warnings in WaitSynchronization() | |||
| 2018-07-24 | deconstructed_rom_directory: Remove unused FindRomFS() function | Lioncash | |
| 2018-07-24 | friend: Add friend:m, friend:s, and friend:v services | Lioncash | |
| Given we already have friend:a and friend:u, we should add the remaining services as well. | |||
| 2018-07-24 | friend/interface: Add missing CreateDaemonSuspendSessionService() to the ↵ | Lioncash | |
| function handler table | |||
| 2018-07-24 | friend: Deduplicate interfaces | Lioncash | |
| 2018-07-24 | svc: Resolve sign comparison warnings in WaitSynchronization() | Lioncash | |
| The loop's induction variable was signed, but we were comparing against an unsigned variable. | |||
| 2018-07-24 | svc: Log parameters in SetMemoryAttribute() | Lioncash | |
| Provides slightly more context than only logging out the address value. | |||
| 2018-07-24 | Merge pull request #798 from lioncash/const | bunnei | |
| arm_dynarmic: Make MakeJit() a const member function | |||
| 2018-07-24 | Merge pull request #797 from lioncash/explicit | bunnei | |
| core: Make converting constructors explicit where applicable | |||
| 2018-07-24 | Merge pull request #795 from lioncash/decl | bunnei | |
| apm/interface: Remove redundant declaration of InstallInterfaces() | |||
| 2018-07-24 | Merge pull request #794 from lioncash/ref | bunnei | |
| mutex: Pass SharedPtr to GetHighestPriorityMutexWaitingThread() by reference | |||
| 2018-07-24 | time: Simplify interface creation | Lioncash | |
| We can use one instance of the interface instead of duplicating code. | |||
| 2018-07-24 | core_timing: Split off utility functions into core_timing_util | MerryMage | |
| 2018-07-24 | CMakeLists: Sort filenames | MerryMage | |
| 2018-07-24 | set_sys: Implement SetColorSetId() | Lioncash | |
| 2018-07-24 | ipc_helper: Add helper member function for popping enum values to RequestParser | Lioncash | |
| 2018-07-23 | Merge pull request #793 from lioncash/priv | bunnei | |
| ipc_helpers: Make member variables of ResponseBuilder private | |||
| 2018-07-23 | Merge pull request #785 from lioncash/fs | bunnei | |
| partition_filesystem: Use std::move where applicable | |||
| 2018-07-23 | arm_dynarmic: Make MakeJit() a const member function | Lioncash | |
| This functions doesn't modify instance state, so it can be a made a const member function. | |||
| 2018-07-23 | core: Make converting constructors explicit where applicable | Lioncash | |
| Avoids unwanted implicit conversions. Thankfully, given the large amount of cleanup in past PRs, only this tiny amount is left over to cover. | |||
| 2018-07-23 | apm/interface: Remove redundant declaration of InstallInterfaces() | Lioncash | |
| This is already declared in apm/apm.h | |||
| 2018-07-23 | mutex: Pass SharedPtr to GetHighestPriorityMutexWaitingThread() by reference | Lioncash | |
| The pointed to thread's members are simply observed in this case, so we don't need to copy it here. | |||
| 2018-07-23 | VFS Regression and Accuracy Fixes (#776) | Zach Hilman | |
| * Regression and Mode Fixes * Review Fixes * string_view correction * Add operator& for FileSys::Mode * Return std::string from SanitizePath * Farming Simulator Fix * Use != With mode operator& | |||
| 2018-07-23 | hle_ipc: Make constructors explicit where applicable | Lioncash | |
| 2018-07-23 | ipc_helpers: Make member variables of ResponseBuilder private | Lioncash | |
| These aren't used externally at all, so they can be made private. | |||
| 2018-07-23 | Merge pull request #786 from lioncash/exclusive | bunnei | |
| exclusive_monitor: Use consistent type alias for u64 | |||
| 2018-07-23 | Merge pull request #784 from lioncash/loader | bunnei | |
| loader: Minor cleanup | |||
| 2018-07-23 | Merge pull request #783 from lioncash/linker | bunnei | |
| linker: Remove unused parameter from WriteRelocations() | |||
| 2018-07-23 | Merge pull request #782 from lioncash/file | bunnei | |
| loader/nro: Minor changes | |||
| 2018-07-23 | Merge pull request #780 from lioncash/move | bunnei | |
| vi: Minor changes | |||
| 2018-07-23 | Merge pull request #779 from lioncash/shared | bunnei | |
| hle: Remove unused config_mem and shared_page source files | |||
| 2018-07-23 | exclusive_monitor: Use consistent type alias for u64 | Lioncash | |
| Uses the same type aliases we use for virtual addresses, and converts one lingering usage of std::array<uint64_t, 2> to u128 for consistency. | |||
| 2018-07-23 | partition_filesystem: Use std::move where applicable | Lioncash | |
| Avoids copying a std::string instance and avoids unnecessary atomic reference count incrementing and decrementing. | |||
| 2018-07-23 | loader: Remove unnecessary constructor call in IdentifyFile() | Lioncash | |
| RealVfsFile inherits from VfsFile, the instance from std::make_shared is already compatible with the function argument type, making the copy constructor call unnecessary. | |||
| 2018-07-23 | linker: Remove unused parameter from WriteRelocations() | Lioncash | |
| is_jump_relocation is never used within the function, so we can just remove it. | |||
| 2018-07-23 | nro: Replace inclusion with a forward declaration | Lioncash | |
| It's sufficient to use a forward declaration instead of a direct inclusion here. | |||
| 2018-07-23 | nro: Make bracing consistent | Lioncash | |
| Makes the code more uniform, and also braces cases where the body of an unbraced conditional travels more than one line. | |||
| 2018-07-23 | nro: Make constructor explicit | Lioncash | |
| Makes it consistent with the other Apploader constructors, and prevents implicit conversions. | |||
| 2018-07-23 | nro: Remove unused forward declaration | Lioncash | |
| This isn't used anywhere in the header. | |||
| 2018-07-23 | Merge pull request #695 from DarkLordZach/nro-asset | bunnei | |
| NRO Assets and NACP File Format | |||
| 2018-07-23 | vi: Add std::is_trivially_copyable checks to Read and Write functions | Lioncash | |
| It's undefined behavior to memcpy an object that isn't considered trivially copyable, so put a compile-time check in to make sure this doesn't occur. | |||
