| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | scope_exit: Make constexpr | 2024-02-19 | 10 | -19/+29 | |
| | | | | | | Allows the use of the macro in constexpr-contexts. Also avoids some potential problems when nesting braces inside it. | ||||
| * | kernel: fix debugger and process list lifetime | 2024-01-12 | 1 | -3/+5 | |
| | | |||||
| * | Fix typos in src/core (#12625) | 2024-01-08 | 1 | -2/+2 | |
| | | | | | | | | | | * Fix typos in src/core * Fix typo correction * Fix indentation of MemoryStateNames * Fix indent | ||||
| * | kernel: restrict nce to applications | 2023-12-22 | 1 | -1/+0 | |
| | | |||||
| * | k_server_session: process for guest servers | 2023-12-22 | 1 | -4/+2 | |
| | | |||||
| * | Merge pull request #12296 from liamwhite/client-session | 2023-12-09 | 1 | -81/+215 | |
| |\ | | | | | kernel: implement remaining IPC syscalls | ||||
| | * | kernel: implement remaining IPC syscalls | 2023-12-06 | 1 | -81/+215 | |
| | | | |||||
| * | | kernel: implement light IPC | 2023-12-07 | 3 | -16/+124 | |
| |/ | |||||
| * | core: refactor emulated cpu core activation | 2023-12-04 | 4 | -71/+36 | |
| | | |||||
| * | kernel: add KPageTableBase | 2023-11-10 | 4 | -9/+17 | |
| | | | | | Co-authored-by: Kelebek1 <eeeedddccc@hotmail.co.uk> | ||||
| * | kernel: update KProcess | 2023-10-21 | 5 | -21/+24 | |
| | | |||||
| * | kernel: fix format string error | 2023-10-20 | 1 | -1/+1 | |
| | | |||||
| * | k_page_table: implement PermissionLocked | 2023-10-20 | 1 | -1/+7 | |
| | | |||||
| * | kernel: implement transfer memory | 2023-10-04 | 1 | -5/+49 | |
| | | |||||
| * | core: improve debug workflow | 2023-09-14 | 2 | -2/+6 | |
| | | |||||
| * | kernel: remove relative task registration | 2023-08-14 | 6 | -15/+58 | |
| | | |||||
| * | core: reduce TOCTTOU memory access | 2023-07-22 | 2 | -14/+8 | |
| | | |||||
| * | kernel: reduce page table region checking | 2023-07-14 | 5 | -49/+10 | |
| | | |||||
| * | k_process: PageTable -> GetPageTable | 2023-07-14 | 12 | -39/+39 | |
| | | |||||
| * | kernel: Synchronize | 2023-07-01 | 2 | -36/+42 | |
| | | |||||
| * | Remove memory allocations in some hot paths | 2023-06-22 | 3 | -9/+10 | |
| | | |||||
| * | core_timing: Fix SingleCore cycle timer | 2023-06-07 | 1 | -9/+1 | |
| | | |||||
| * | core_timing: Use CNTPCT as the guest CPU tick | 2023-06-07 | 1 | -2/+2 | |
| | | | | | | Previously, we were mixing the raw CPU frequency and CNTFRQ. The raw CPU frequency (1020 MHz) should've never been used as CNTPCT (whose frequency is CNTFRQ) is the only counter available. | ||||
| * | memory: rename global memory references to application memory | 2023-03-23 | 9 | -13/+17 | |
| | | |||||
| * | Merge pull request #9964 from liamwhite/typed-address | 2023-03-23 | 17 | -44/+43 | |
| |\ | | | | | kernel: use KTypedAddress for addresses | ||||
| | * | kernel: use KTypedAddress for addresses | 2023-03-22 | 17 | -44/+43 | |
| | | | |||||
| * | | kernel: fix LOG_TRACE in ipc | 2023-03-19 | 1 | -1/+1 | |
| |/ | |||||
| * | kernel: convert KProcess to new style | 2023-03-12 | 2 | -3/+3 | |
| | | |||||
| * | kernel: convert KThread to new style | 2023-03-12 | 1 | -4/+1 | |
| | | |||||
| * | kernel: prefer std::addressof | 2023-03-12 | 8 | -16/+17 | |
| | | |||||
| * | kernel/svc: convert to new style | 2023-03-12 | 18 | -295/+185 | |
| | | |||||
| * | kernel: convert KPort, KSession | 2023-03-12 | 2 | -3/+3 | |
| | | |||||
| * | general: fix spelling mistakes | 2023-03-12 | 2 | -2/+2 | |
| | | |||||
| * | Merge pull request #9916 from liamwhite/fpu | 2023-03-09 | 1 | -0/+3 | |
| |\ | | | | | kernel: clone fpu status on CreateThread | ||||
| | * | kernel: clone fpu status on CreateThread | 2023-03-07 | 1 | -0/+3 | |
| | | | |||||
| * | | kernel: fix WaitSynchronization | 2023-03-05 | 1 | -16/+29 | |
| |/ | |||||
| * | Merge pull request #9832 from liamwhite/hle-mp | 2023-03-01 | 2 | -32/+24 | |
| |\ | | | | | service: HLE multiprocess | ||||
| | * | service: refactor server architecture | 2023-02-21 | 2 | -32/+24 | |
| | | | | | | | | | Converts services to have their own processes | ||||
| * | | svc: Fix type consistency (exposed on macOS) | 2023-02-21 | 10 | -34/+34 | |
| |/ | |||||
| * | kernel: add KObjectName | 2023-02-17 | 1 | -3/+51 | |
| | | |||||
| * | Merge pull request #9796 from liamwhite/current | 2023-02-15 | 22 | -108/+115 | |
| |\ | | | | | general: rename CurrentProcess to ApplicationProcess | ||||
| | * | kernel: use GetCurrentProcess | 2023-02-13 | 22 | -108/+115 | |
| | | | |||||
| * | | remove static from pointer sized or smaller types for aesthetics, change ↵ | 2023-02-14 | 3 | -3/+3 | |
| | | | | | | | | | | | | | constexpr static to static constexpr for consistency Signed-off-by: arades79 <scravers@protonmail.com> | ||||
| * | | add static lifetime to constexpr values to force compile time evaluation ↵ | 2023-02-14 | 3 | -3/+3 | |
| |/ | | | | | | where possible Signed-off-by: arades79 <scravers@protonmail.com> | ||||
| * | kernel/svc: Fix undefined info_id | 2023-02-11 | 1 | -2/+2 | |
| | | |||||
| * | kernel/svc: switch to generated wrappers | 2023-02-06 | 37 | -258/+1809 | |
| | | |||||
| * | kernel/svc: Split implementations into separate files | 2023-02-04 | 36 | -0/+2997 | |