summaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2016-05-14Memory: Fixed a regression caused by #1695 and #1689.Subv
Reserve enough space in the vector that holds the linear heap memory to prevent relocations of the backing memory when growing too much. Closes #1790
2016-05-13Merge pull request #1689 from Subv/shmembunnei
Kernel: Implemented shared memory.
2016-05-12Merge pull request #1695 from Subv/tls_allocbunnei
Kernel/Threads: Dynamically allocate the TLS region for threads.
2016-05-12HLE/Applets: Give each applet its own block of heap memory, and use that ↵Subv
when creating the framebuffer shared memory block.
2016-05-12Kernel: Account for automatically-allocated shared memories in the amount of ↵Subv
used linear heap memory.
2016-05-12APT: Move the shared font loading and relocation functions to their own ↵Subv
subdirectory services/apt/bcfnt.
2016-05-12Kernel/SharedMemory: Log an error when Map fails.Subv
2016-05-12Kernel: Implemented shared memory permissions.Subv
2016-05-12APT: Implement relocating the shared font to its true address.Subv
2016-05-12Kernel/Memory: Remove the Shared Memory region from the legacy memory map.Subv
2016-05-12Kernel/SharedMemory: Properly implemented shared memory support.Subv
Applications can request the kernel to allocate a piece of the linear heap for them when creating a shared memory object. Shared memory areas are now properly mapped into the target processes when calling svcMapMemoryBlock. Removed the APT Shared Font hack as it is no longer needed.
2016-05-12Kernel/SVC: Fixed the register order for svcCreateMemoryBlock.Subv
R0 is used as the last parameter instead of R4.
2016-05-10gdbstub: Silence missing prototype warningsLioncash
2016-05-09dyncom: Reset the context into user mode correctlyLioncash
The other mode was system mode.
2016-05-08Merge pull request #1766 from Subv/log_cpubunnei
Kernel/Threading: Warn when a thread can be scheduled in the Syscore (Core 1)
2016-05-07Merge pull request #1718 from alex-laties/fixup-type-conversionsbunnei
fixup simple type conversions where possible
2016-05-07Merge pull request #1761 from Subv/applets_fbbunnei
HLE/Applets: Use the correct size for the framebuffer SharedMemory
2016-05-07fixup simple type conversions where possibleAlexander Laties
2016-05-07Kernel/Threading: Warn when a thread can be scheduled in the Syscore (Core 1).Subv
We do not currently implement any cores other than the AppCore (Core 0).
2016-05-07Kernel/Threads: Dynamically allocate the TLS region for threads in the BASE ↵Subv
region of the linear heap. Each thread gets a 0x200-byte area from the 0x1000-sized page, when all 8 thread slots in a single page are used up, the kernel allocates a new page to hold another 8 entries. This is consistent with what the real kernel does.
2016-05-07HLE/Applets: Use the correct size for the framebuffer SharedMemory in the ↵Subv
swkbd and MiiSelector applets.
2016-05-06fix:return proper errorwwylele
2016-05-05Merge pull request #1762 from bunnei/globalbunnei
hle: Get rid of direct global access to g_reschedule
2016-05-05HLE: Rename RescheduleIsPending to IsReschedulePending.bunnei
2016-05-05Merge pull request #1700 from wwylele/gamelist-iconbunnei
Qt: display game icon and title in the game list
2016-05-05Layout Mii parameters input/output, and return success as result of applet workmailwl
2016-05-04add icon & title to game listwwylele
2016-05-02Merge pull request #1732 from wwylele/config00170000bunnei
add config block 0x00170000; remove duplicated content
2016-05-01remove duplicated function declarationwwylele
2016-04-30VideoCore: Run include-what-you-use and fix most includes.Emmanuel Gil Peyrot
2016-04-30LCD: Remove unneeded #undef with no matching #define.Emmanuel Gil Peyrot
2016-04-30Merge pull request #1729 from MerryMage/null-sinkbunnei
Audio Config: Implement null sink and implement sink configuration
2016-04-30Audio: Add sink selection to configuration filesMerryMage
2016-04-30Merge pull request #1650 from JamePeng/update-the-ndm-codebunnei
Update the stub code of NDM service!
2016-04-30Merge pull request #1647 from mailwl/acu-closeasyncbunnei
ac:u: stub CloseAsync; align memory size in svc:GetProcessInfo(type=2)
2016-04-29Merge pull request #1699 from mailwl/gpu-rightsbunnei
gsp::Gpu: implement AcquireRight, ReleaseRight functions
2016-04-29add config block 0x00170000wwylele
2016-04-29Common: Remove section measurement from profiler (#1731)Yuri Kunde Schlesner
This has been entirely superseded by MicroProfile. The rest of the code can go when a simpler frametime/FPS meter is added to the GUI.
2016-04-27Merge pull request #1708 from MerryMage/dsp_dspbunnei
DSP Service: Cleanup
2016-04-27DSP_DSP: Fix log format strings and argumentsMerryMage
2016-04-27DSP_DSP: Add return IPC headersMerryMage
2016-04-27DSP_DSP: Updated interrupt implementationMerryMage
2016-04-26y2r_u: Cleanup some formatting.bunnei
2016-04-26Merge pull request #1447 from JamePeng/update-y2r-servicebunnei
Update the code of service y2r!
2016-04-24am: title_id is long long uintSam Spilsbury
2016-04-24DSP_DSP: Remove unused variableMerryMage
2016-04-23return checks if event and memory createdmailwl
2016-04-23ncch: Use correct format specifier (for long long uint)Sam Spilsbury
2016-04-23fs: Fix what appears to be a typo (filename_size / file_size)Sam Spilsbury
2016-04-23gdbstub: Don't check if unsigned int is > 0Sam Spilsbury