aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle
Commit message (Collapse)AuthorAge
* Core/ResourceLimits: Implemented the basic structure of ResourceLimits.Gravatar Subv2015-05-14
| | | | | | Implemented svcs GetResourceLimit, GetResourceLimitCurrentValues and GetResourceLimitLimitValues. Note that the resource limits do not currently keep track of used objects, since we have no way to distinguish between an object created by the application, and an object created by some HLE module once we're inside Kernel::T::Create.
* Memory: Read SharedPage directly from Memory::ReadGravatar Yuri Kunde Schlesner2015-05-15
|
* Memory: Read ConfigMem directly from Memory::ReadGravatar Yuri Kunde Schlesner2015-05-15
|
* Memmap: Re-organize memory function in two filesGravatar Yuri Kunde Schlesner2015-05-15
| | | | | | | memory.cpp/h contains definitions related to acessing memory and configuring the address space mem_map.cpp/h contains higher-level definitions related to configuring the address space accoording to the kernel and allocating memory.
* thread: Fix a conditional check in RescheduleGravatar Lioncash2015-05-14
|
* Merge pull request #756 from purpasmart96/ptm_service_changesGravatar bunnei2015-05-12
|\ | | | | PTM: Changed the ptm services to be like the IR, HID, and APT services.
* \ Merge pull request #748 from Subv/tls_maxGravatar bunnei2015-05-11
|\ \ | | | | | | Core/Memory: Add TLS support for creating up to 300 threads
* \ \ Merge pull request #751 from yuriks/idle-threadGravatar bunnei2015-05-11
|\ \ \ | | | | | | | | Thread: Remove the idle thread
* \ \ \ Merge pull request #757 from Subv/schedulingGravatar bunnei2015-05-11
|\ \ \ \ | | | | | | | | | | Core/Scheduling: Prepare the new priority in the thread queue when svcSetPriority is called
| | * | | Thread: Remove the idle threadGravatar Yuri Kunde Schlesner2015-05-11
| | | | | | | | | | | | | | | | | | | | Instead just use nullptr to represent no thread is active.
| | | * | Core/Memory: Add TLS support for creating up to 300 threadsGravatar Subv2015-05-11
| |_|/ / |/| | |
* | | | Merge pull request #750 from Subv/process_svcGravatar Yuri Kunde Schlesner2015-05-11
|\ \ \ \ | | | | | | | | | | Core/HLE: Implemented the SVCs GetProcessId and GetProcessIdOfThread
| | * | | Core/Scheduling: Prepare the new priority in the thread queue when ↵Gravatar Subv2015-05-11
| | |/ / | | | | | | | | | | | | svcSetPriority is called
| | | * PTM: Changed the way the ptm services are handled to be like theGravatar purpasmart962015-05-11
| |_|/ |/| | | | | | | | IR, HID, and APT services.
| * | fixup!Gravatar Subv2015-05-11
| | |
* | | NWM_UDS: Fix a typo in the nwm service port nameGravatar purpasmart962015-05-11
| |/ |/|
| * Core/HLE: Implemented the SVCs GetProcessId and GetProcessIdOfThreadGravatar Subv2015-05-11
| |
* | Thread: Correctly set main thread initial stack positionGravatar Yuri Kunde Schlesner2015-05-11
|/
* Merge pull request #740 from yuriks/gsp-shmemGravatar archshift2015-05-10
|\ | | | | Fix crashes due to un-initialized GSP shared memory
* | fixup! Set the TLS address in the schedulerGravatar Subv2015-05-10
| |
* | Core/Memory: Give every emulated thread it's own TLS area.Gravatar Subv2015-05-10
| | | | | | | | | | The TLS area for thread T with id Ti is located at TLS_AREA_VADDR + (Ti - 1) * 0x200. This allows some games like Mario Kart 7 to continue further.
| * fixup! GSP: Small tweaks to shared memory initializationGravatar Yuri Kunde Schlesner2015-05-10
| |
| * GSP: Small tweaks to shared memory initializationGravatar Yuri Kunde Schlesner2015-05-10
| |
| * Kernel: Zero-fill shared memory blocks when mappingGravatar Yuri Kunde Schlesner2015-05-10
| | | | | | | | | | | | This works around crashes related to GSP/HID/etc. shared memory blocks having garbage values. The proper fix requires proper management of mapped memory blocks in the process.
| * Kernel: Capture SharedMemory attributes at creation, not when mappingGravatar Yuri Kunde Schlesner2015-05-10
|/
* Common: Remove the BIT macroGravatar Yuri Kunde Schlesner2015-05-09
| | | | | | | When the macro was introduced in 326ec51261299e48de97592631c02523da9c8118 it wasn't noticed that it conflicted in name with a heavily used macro inside of dyncom. This causes some compiler warnings. Since it's only lightly used, it was opted to simply remove the new macro.
* Memory: Re-organize and rename memory area address constantsGravatar Yuri Kunde Schlesner2015-05-09
|
* Kernel: Remove unused g_main_thread variableGravatar Yuri Kunde Schlesner2015-05-08
|
* Process: Rename StaticAddressMapping => AddressMappingGravatar Yuri Kunde Schlesner2015-05-08
|
* Process: Add more documentation to the class membersGravatar Yuri Kunde Schlesner2015-05-08
|
* Process: Use BitField to store process flagsGravatar Yuri Kunde Schlesner2015-05-08
|
* Process: Support parsing of exheader kernel capsGravatar Yuri Kunde Schlesner2015-05-08
|
* Kernel: Remove g_program_idGravatar Yuri Kunde Schlesner2015-05-08
| | | | This has been obsoleted by the field in Process.
* Kernel: Introduce skeleton Process class to hold process dataGravatar Yuri Kunde Schlesner2015-05-08
|
* Fix printf format warningGravatar Yuri Kunde Schlesner2015-05-07
|
* Common: Remove common.hGravatar Yuri Kunde Schlesner2015-05-07
|
* Clean-up includesGravatar Yuri Kunde Schlesner2015-05-06
|
* FileSys: De-inline Path membersGravatar Yuri Kunde Schlesner2015-05-06
|
* FileSys: Clean-up includes, de-inline destructorsGravatar Yuri Kunde Schlesner2015-05-06
|
* Move typedefs from kernel.h to more appropriate placesGravatar Yuri Kunde Schlesner2015-05-06
|
* HLE: Clean up SVC dispatch mechanismGravatar Yuri Kunde Schlesner2015-05-06
|
* HLE: Properly initialize and shutdown remaining modules.Gravatar bunnei2015-05-01
|
* Kernel: Properly initialize and shutdown all modules.Gravatar bunnei2015-05-01
|
* Services: Initialize all state variables at bootup.Gravatar bunnei2015-05-01
|
* ConfigMem: Remove duplicate retail bitGravatar purpasmart962015-04-28
|
* Merge pull request #692 from purpasmart96/log_improvementsGravatar bunnei2015-04-28
|\ | | | | Services/Loader: Use more sensible log formats for certain functions along with more info being logged.
| * Services/Loader: Use more sensible log formats for certain functionsGravatar purpasmart962015-04-27
| | | | | | | | along with more info being logged.
* | ptm_sysm: Add static specifier to IsLegacyPowerOffGravatar Lioncash2015-04-24
| |
* | Merge pull request #696 from yuriks/interface-deinlineGravatar bunnei2015-04-14
|\ \ | | | | | | De-inline functions from Interface, removing them from service.h
* | | Kernel: Use the correct format string for u64 hex.Gravatar Emmanuel Gil Peyrot2015-04-14
| | |