| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-08-15 | Merge pull request #1080 from lioncash/ret | bunnei | |
| sm/controller: Correct return value of QueryPointerBufferSize | |||
| 2018-08-15 | kernel/server_session: Add IsSession() member function | Lioncash | |
| Allows querying the inverse of IsDomain() to make things more readable. This will likely also be usable in the event of implementing ConvertDomainToSession(). | |||
| 2018-08-15 | sm/controller: Correct return value of QueryPointerBufferSize | Lioncash | |
| This should be returning a u16 according to Switch Brew. | |||
| 2018-08-01 | kernel: Move object class to its own source files | Lioncash | |
| General moving to keep kernel object types separate from the direct kernel code. Also essentially a preliminary cleanup before eliminating global kernel state in the kernel code. | |||
| 2018-07-19 | hle/service: Make constructors explicit where applicable | Lioncash | |
| Prevents implicit construction and makes these lingering non-explicit constructors consistent with the rest of the other classes in services. | |||
| 2018-07-02 | Update clang format | James Rowe | |
| 2018-07-02 | Rename logging macro back to LOG_* | James Rowe | |
| 2018-05-02 | general: Make formatting of logged hex values more straightforward | Lioncash | |
| This makes the formatting expectations more obvious (e.g. any zero padding specified is padding that's entirely dedicated to the value being printed, not any pretty-printing that also gets tacked on). | |||
| 2018-04-24 | sm: Move logging macros over to new fmt-compatible ones | Lioncash | |
| 2018-04-20 | core: Relocate g_service_manager to the System class | Lioncash | |
| Converts the service manager from a global into an instance-based variable. | |||
| 2018-04-19 | service: Use nested namespace specifiers where applicable | Lioncash | |
| Tidies up namespace declarations | |||
| 2018-02-05 | Dont call UNIMPLEMENTED for 'empty services', just return error code | David Marcec | |
| 2018-02-03 | controller: DuplicateSession should return a ClientSession. | bunnei | |
| 2018-01-24 | ResponseBuilder: Use a bit field for customizing instead of always_move_handles. | bunnei | |
| 2018-01-24 | hle: Rename RequestBuilder to ResponseBuilder. | bunnei | |
| 2018-01-24 | service: Fix all incorrect IPC response headers. | bunnei | |
| 2018-01-24 | hle: Integrate Domain handling into ServerSession. | bunnei | |
| 2018-01-24 | hle: Remove Domain and SyncObject kernel objects. | bunnei | |
| 2018-01-19 | Added CreateSharedMemory & UNIMPLEMENTED() for non existent services. (#113) | David | |
| * Added svcCreateSharedMemory * Services which are not implemented now throw UNIMPLEMENTED() * clang-format * changed perms to u32 * removed camelcase | |||
| 2018-01-17 | controller: Use DuplicateSession for DuplicateSessionEx. | bunnei | |
| 2018-01-13 | yuzu: Update license text to be consistent across project. | bunnei | |
| 2018-01-07 | IPC: Make DuplicateSession return the Domain instead of the Session if the ↵ | Subv | |
| request was made on a Domain interface. | |||
| 2018-01-07 | IPC: Corrected some command headers in the IPC Controller interface. | Subv | |
| 2018-01-07 | IPC: Take the number of domain objects as a parameter in MakeBuilder. | Subv | |
| 2018-01-07 | SM: Fixed connecting to services with an 8-byte name, like appletOE. | Subv | |
| 2018-01-07 | IPC: Fixed pushing ResultCodes into the command buffer. | Subv | |
| They should have 32 bits of padding after the error code now. | |||
| 2018-01-07 | IPC Cleanup: Remove 3DS-specific code and translate copy, move and domain ↵ | Subv | |
| objects in IPC requests. Popping objects from the buffer is still not implemented. | |||
| 2018-01-07 | IPC: Skip the entire u64 of the command id when receiving an IPC request. | Subv | |
| Service code now doesn't have to deal with this. | |||
| 2017-12-29 | controller: Implement DuplicateSession. | bunnei | |
| 2017-12-29 | kernel: Fix implementation of ConvertSessionToDomain. | bunnei | |
| 2017-12-28 | service: Clean up apm/lm/applet_oe/controller/sm ctor/dtor. | bunnei | |
| 2017-10-31 | hle: Use Switch formatted result codes. | bunnei | |
| 2017-10-15 | hle: Implement ConvertSessionToDomain, various cleanups. | bunnei | |
| 2017-10-14 | hle: Add service stubs for apm and appletOE. | bunnei | |
| 2017-10-14 | hle: Initial implementation of NX service framework and IPC. | bunnei | |
| 2017-10-09 | Merge remote-tracking branch 'upstream/master' into nx | bunnei | |
| # Conflicts: # src/core/CMakeLists.txt # src/core/arm/dynarmic/arm_dynarmic.cpp # src/core/arm/dyncom/arm_dyncom.cpp # src/core/hle/kernel/process.cpp # src/core/hle/kernel/thread.cpp # src/core/hle/kernel/thread.h # src/core/hle/kernel/vm_manager.cpp # src/core/loader/3dsx.cpp # src/core/loader/elf.cpp # src/core/loader/ncch.cpp # src/core/memory.cpp # src/core/memory.h # src/core/memory_setup.h | |||
| 2017-09-24 | HLE/SRV: Implemented RegisterService. | Subv | |
| Now system modules can do more than just crash immediately on startup. | |||
| 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-11 | Service/sm: Convert srv: to use IPC helpers | Yuri Kunde Schlesner | |
| 2017-06-08 | Service/sm: Convert 'srv:' to ServiceFramework | Yuri Kunde Schlesner | |
| 2017-06-06 | Service: Remove unnecessary includes from service.h | Yuri Kunde Schlesner | |
| This has a huge fallout in terms of needing to fix other files because all service implementations included that file. | |||
| 2017-06-06 | Service: Make service registration part of the sm implementation | Yuri Kunde Schlesner | |
| Also enhances the GetServiceHandle implementation to be more accurate. | |||
| 2017-06-06 | Service/sm: Use an actual semaphore for the notification semaphore | Yuri Kunde Schlesner | |
| An Event was used way back then when we didn't have proper working semaphores. Our Semaphore implementation is good enough now. | |||
| 2017-06-06 | Service: Move SRV interface to a new sm/ subdirectory | Yuri Kunde Schlesner | |
| This will contain the implementation of the sm (Service Manager) system module. | |||
