1
0
Fork 0
forked from suyu/suyu
suyu/src/core/hle/kernel
Kevin Hartman 5fcbfc06eb Scheduler refactor Pt. 1
* 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.
2015-02-09 21:47:12 -08:00
..
address_arbiter.cpp Kernel: Stop creating useless Handles during object creation 2015-02-02 15:37:09 -02:00
address_arbiter.h Kernel: Stop creating useless Handles during object creation 2015-02-02 15:37:09 -02:00
event.cpp Kernel: Stop creating useless Handles during object creation 2015-02-02 15:37:09 -02:00
event.h Kernel: Stop creating useless Handles during object creation 2015-02-02 15:37:09 -02:00
kernel.cpp Scheduler refactor Pt. 1 2015-02-09 21:47:12 -08:00
kernel.h Kernel: Make WaitObjects share ownership of Threads waiting on them 2015-02-02 15:37:08 -02:00
mutex.cpp Mutex: Locks should be recursive. 2015-02-09 22:06:09 -05:00
mutex.h Mutex: Locks should be recursive. 2015-02-09 22:06:09 -05:00
semaphore.cpp Kernel: Stop creating useless Handles during object creation 2015-02-02 15:37:09 -02:00
semaphore.h Explicitly instantiate constructors/destructors for Kernel objects 2015-02-02 15:37:07 -02:00
session.cpp Explicitly instantiate constructors/destructors for Kernel objects 2015-02-02 15:37:07 -02:00
session.h Explicitly instantiate constructors/destructors for Kernel objects 2015-02-02 15:37:07 -02:00
shared_memory.cpp Kernel: Stop creating useless Handles during object creation 2015-02-02 15:37:09 -02:00
shared_memory.h Kernel: Stop creating useless Handles during object creation 2015-02-02 15:37:09 -02:00
thread.cpp Scheduler refactor Pt. 1 2015-02-09 21:47:12 -08:00
thread.h Scheduler refactor Pt. 1 2015-02-09 21:47:12 -08:00
timer.cpp Kernel: Stop creating useless Handles during object creation 2015-02-02 15:37:09 -02:00
timer.h Kernel: Stop creating useless Handles during object creation 2015-02-02 15:37:09 -02:00