index
:
yuzu
master
Nintendo Switch emulator archive
git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
core
/
hle
/
kernel
/
kernel.cpp
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
Kernel: Add some asserts to enforce the invariants in the scheduler.
Subv
2017-01-05
1
-0
/
+8
*
Kernel: Remove a thread from all of its waiting objects' waiting_threads list...
Subv
2017-01-05
1
-18
/
+4
*
Kernel: Remove Thread::wait_objects_index and use wait_objects to hold all th...
Subv
2017-01-05
1
-1
/
+7
*
Kernel/Mutex: Update a mutex priority when a thread stops waiting on it.
Subv
2017-01-04
1
-8
/
+15
*
Kernel: Object ShouldWait and Acquire calls now take a thread as a parameter.
Subv
2017-01-04
1
-8
/
+6
*
Kernel: remove object's waiting thread if it is dead
wwylele
2016-12-16
1
-1
/
+2
*
Fixed the codestyle to match our clang-format rules.
Subv
2016-12-14
1
-4
/
+5
*
Properly remove a thread from its wait_objects' waitlist when it is awoken by...
Subv
2016-12-10
1
-1
/
+6
*
WaitSynch: Removed unused variables and reduced SharedPtr copies.
Subv
2016-12-09
1
-10
/
+4
*
Use boost remove_erase_if instead of the erase-remove idiom
Subv
2016-12-06
1
-2
/
+3
*
Improved the algorithm for GetHighestPriorityReadyThread.
Subv
2016-12-06
1
-14
/
+13
*
Threading: Added some utility functions and const correctness.
Subv
2016-12-04
1
-7
/
+6
*
Threading: Reworked the way our scheduler works.
Subv
2016-12-03
1
-5
/
+54
*
Kernel/Loader: Grab the system mode from the NCCH ExHeader.
Subv
2016-11-19
1
-4
/
+2
*
implement wait tree widget
wwylele
2016-09-22
1
-0
/
+4
*
Use negative priorities to avoid special-casing the self-include
Yuri Kunde Schlesner
2016-09-21
1
-1
/
+1
*
Remove empty newlines in #include blocks.
Emmanuel Gil Peyrot
2016-09-21
1
-3
/
+1
*
Sources: Run clang-format on everything.
Emmanuel Gil Peyrot
2016-09-18
1
-1
/
+2
*
Kernel: Add more infrastructure to support different memory layouts
Yuri Kunde Schlesner
2015-08-16
1
-3
/
+16
*
Common: Cleanup key_map includes.
Emmanuel Gil Peyrot
2015-06-28
1
-2
/
+0
*
kernel: Fix svcWaitSynch to always acquire requested wait objects.
bunnei
2015-06-16
1
-18
/
+4
*
Core/ResourceLimits: Implemented the basic structure of ResourceLimits.
Subv
2015-05-14
1
-0
/
+3
*
fixup!
Subv
2015-05-11
1
-1
/
+3
*
Core/HLE: Implemented the SVCs GetProcessId and GetProcessIdOfThread
Subv
2015-05-11
1
-2
/
+2
*
Kernel: Remove unused g_main_thread variable
Yuri Kunde Schlesner
2015-05-08
1
-2
/
+0
*
Kernel: Remove g_program_id
Yuri Kunde Schlesner
2015-05-08
1
-2
/
+0
*
Kernel: Introduce skeleton Process class to hold process data
Yuri Kunde Schlesner
2015-05-08
1
-12
/
+2
*
Common: Remove common.h
Yuri Kunde Schlesner
2015-05-07
1
-1
/
+2
*
Kernel: Properly initialize and shutdown all modules.
bunnei
2015-05-01
1
-4
/
+7
*
Kernel: Fixed default thread priority.
bunnei
2015-04-09
1
-1
/
+1
*
Build: Fixed some warnings
Subv
2015-02-12
1
-2
/
+2
*
Asserts: break/crash program, fit to style guide; log.h->assert.h
archshift
2015-02-10
1
-2
/
+2
*
Scheduler refactor Pt. 1
Kevin Hartman
2015-02-09
1
-5
/
+1
*
core: Fix some warnings on OSX
Lioncash
2015-02-03
1
-1
/
+0
*
Kernel: Make WaitObjects share ownership of Threads waiting on them
Yuri Kunde Schlesner
2015-02-02
1
-4
/
+4
*
Kernel: Fix bug in HandleTable::Close
Yuri Kunde Schlesner
2015-02-02
1
-1
/
+1
*
Kernel: Remove Object::GetHandle (it's not used anymore :D)
Yuri Kunde Schlesner
2015-02-02
1
-4
/
+1
*
Kernel: Introduce unique Object ids for debugging
Yuri Kunde Schlesner
2015-02-02
1
-0
/
+2
*
Kernel: Renamed some functions for clarity.
bunnei
2015-01-21
1
-1
/
+1
*
Session: Change to a WaitObject.
bunnei
2015-01-21
1
-1
/
+1
*
Kernel: Reschedule on SignalEvent and SendSyncRequest, fix some bugs.
bunnei
2015-01-21
1
-1
/
+1
*
AddressArbiter: Changed to Kernel::Object, big cleanup, removed code that mad...
bunnei
2015-01-21
1
-1
/
+1
*
Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks.
bunnei
2015-01-21
1
-2
/
+4
*
WaitSynchronizationN: Implement return values
bunnei
2015-01-21
1
-2
/
+2
*
WaitObject: Added RemoveWaitingThread, fixed a bug, and cleanup.
bunnei
2015-01-21
1
-3
/
+10
*
Kernel: Added WaitObject and changed "waitable" objects inherit from it.
bunnei
2015-01-21
1
-0
/
+26
*
Kernel: Start using boost::intrusive_ptr for lifetime management
Yuri Kunde Schlesner
2015-01-09
1
-13
/
+10
*
Kernel: Don't re-assign object's handle when duplicating one
Yuri Kunde Schlesner
2015-01-09
1
-1
/
+2
*
Thread: Reduce use of Handles and move some funcs to inside the class.
Yuri Kunde Schlesner
2015-01-09
1
-1
/
+1
*
Kernel: Move Thread's definition to the header file
Yuri Kunde Schlesner
2015-01-09
1
-2
/
+1
[next]