aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/kernel/thread.cpp
Commit message (Collapse)AuthorAge
* dyncom: Rename armdefs.h to armstate.hGravatar Lioncash2015-07-25
|
* Kernel/Scheduling: Clean up a thread's wait_objects when its scheduled.Gravatar Subv2015-07-20
| | | | They'll be reset if needed during the next svcWaitSynchronization call (if there's any pending)
* Ensure all kernel objects are released during shutdownGravatar Yuri Kunde Schlesner2015-07-17
| | | | | | | | This commit fixes several kernel object leaks. The most severe of them was threads not being removed from the private handle table used for CoreTiming events. This resulted in Threads never being released, which in turn held references to Process, causing CodeSets to never be freed when loading other applications.
* kernel: Fix svcWaitSynch to always acquire requested wait objects.Gravatar bunnei2015-06-16
|
* Remove every trailing whitespace from the project (but externals).Gravatar Emmanuel Gil Peyrot2015-05-29
|
* Kernel: Move reschedules from SVCs to actual mechanisms that reschedule.Gravatar bunnei2015-05-20
|
* 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 #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
| * Core/HLE: Implemented the SVCs GetProcessId and GetProcessIdOfThreadGravatar Subv2015-05-11
| |
* | Thread: Correctly set main thread initial stack positionGravatar Yuri Kunde Schlesner2015-05-11
|/
* 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.
* Memory: Re-organize and rename memory area address constantsGravatar Yuri Kunde Schlesner2015-05-09
|
* Common: Remove common.hGravatar Yuri Kunde Schlesner2015-05-07
|
* Kernel: Properly initialize and shutdown all modules.Gravatar bunnei2015-05-01
|
* Kernel: Implemented priority inheritance for mutexes.Gravatar bunnei2015-04-09
|
* Thread: Implement priority boost for starved threads.Gravatar bunnei2015-04-09
| | | | | | SVC: Return correct error code on invalid CreateThread processor ID. SVC: Assert when creating a thread with an invalid userland priority.
* Misc cleanup of common and related functionsGravatar archshift2015-02-19
|
* Asserts: break/crash program, fit to style guide; log.h->assert.hGravatar archshift2015-02-10
| | | | | | | Involves making asserts use printf instead of the log functions (log functions are asynchronous and, as such, the log won't be printed in time) As such, the log type argument was removed (printf obviously can't use it, and it's made obsolete by the file and line printing) Also removed some GEKKO cruft.
* Scheduler refactor Pt. 1Gravatar Kevin Hartman2015-02-09
| | | | | | | | | | | | | * Simplifies scheduling logic, specifically regarding thread status. It should be much clearer which statuses are valid for a thread at any given point in the system. * Removes dead code from thread.cpp. * Moves the implementation of resetting a ThreadContext to the corresponding core's implementation. Other changes: * Fixed comments in arm interfaces. * Updated comments in thread.cpp * Removed confusing, useless, functions like MakeReady() and ChangeStatus() from thread.cpp. * Removed stack_size from Thread. In the CTR kernel, the thread's stack would be allocated before thread creation.
* Kernel: Stop creating useless Handles during object creationGravatar Yuri Kunde Schlesner2015-02-02
| | | | | They're finally unnecessary, and will stop cluttering the application's handle table.
* Kernel: Make WaitObjects share ownership of Threads waiting on themGravatar Yuri Kunde Schlesner2015-02-02
| | | | | | | | | | | | | | | | During normal operation, a thread waiting on an WaitObject and the object hold mutual references to each other for the duration of the wait. If a process is forcefully terminated (The CTR kernel has a SVC to do this, TerminateProcess, though no equivalent exists for threads.) its threads would also be stopped and destroyed, leaving dangling pointers in the WaitObjects. The solution is to simply have the Thread remove itself from WaitObjects when it is stopped. The vector of Threads in WaitObject has also been changed to hold SharedPtrs, just in case. (Better to have a reference cycle than a crash.)
* Explicitly instantiate constructors/destructors for Kernel objectsGravatar Yuri Kunde Schlesner2015-02-02
| | | | | | This should speed up compile times a bit, as well as enable more liberal use of forward declarations. (Due to SharedPtr not trying to emit the destructor anymore.)
* Mutex: Replace g_mutex_held_locks with a set inside ThreadGravatar Yuri Kunde Schlesner2015-02-02
|
* Kernel: Introduce unique Object ids for debuggingGravatar Yuri Kunde Schlesner2015-02-02
|
* Kernel: Use separate Handle tables for CoreTiming userdataGravatar Yuri Kunde Schlesner2015-02-02
| | | | This is to support the removal of GetHandle soon
* Thread: Modernize two functions that slipped through previous rebasesGravatar Yuri Kunde Schlesner2015-02-02
|
* arm: Clean up ARMul_StateGravatar Lioncash2015-01-31
| | | | Remove unnecessary/unused struct variables.
* Thread: Fix WaitSynchronization1 to not set register 1 on thread wakeup.Gravatar bunnei2015-01-21
|
* Thread: Use std::find in CheckWait_WaitObject.Gravatar bunnei2015-01-21
|
* Mutex: Cleanup and remove redundant code.Gravatar bunnei2015-01-21
|
* Kernel: Renamed some functions for clarity.Gravatar bunnei2015-01-21
| | | | | - ReleaseNextThread->WakeupNextThread - ReleaseAllWaitingThreads->WakeupAllWaitingThreads.
* Kernel: Changed "ShouldWait" to return bool and "Acquire" to return void.Gravatar bunnei2015-01-21
|
* WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" ↵Gravatar bunnei2015-01-21
| | | | pure virtual.
* Kernel: Moved Wait and Acquire to WaitObject, added way to retrieve a ↵Gravatar bunnei2015-01-21
| | | | WaitObject safely.
* AddressArbiter: Changed to Kernel::Object, big cleanup, removed code that ↵Gravatar bunnei2015-01-21
| | | | made no sense.
* Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks.Gravatar bunnei2015-01-21
|
* WaitSynchronizationN: Refactor to fix several bugsGravatar bunnei2015-01-21
| | | | | | - Separate wait checking from waiting the current thread - Resume thread when wait_all=true only if all objects are available at once - Set output to correct wait object index when there are duplicate handles
* Kernel: Separate WaitSynchronization into Wait and Acquire methods.Gravatar bunnei2015-01-21
|
* WaitSynchronizationN: Implement return valuesGravatar bunnei2015-01-21
|
* Thread: Keep track of multiple wait objects.Gravatar bunnei2015-01-21
|
* Kernel: Added WaitObject and changed "waitable" objects inherit from it.Gravatar bunnei2015-01-21
|
* Merge pull request #466 from Subv/wakeGravatar bunnei2015-01-11
|\ | | | | Thread: Prevent waking a thread multiple times.