summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/object.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* kernel/object: Tighten object against data racesLioncash2018-08-131-7/+8
| | | | | | | | | | Despite being covered by a global mutex, we should still ensure that the class handles its reference counts properly. This avoids potential shenanigans when it comes to data races. Given this is the root object that drives quite a bit of the kernel object hierarchy, ensuring we always have the correct behavior (and no races) is a good thing.
* kernel: Move object class to its own source filesLioncash2018-08-021-0/+100
General moving to keep kernel object types separate from the direct kernel code. Also essentially a preliminary cleanup before eliminating global kernel state in the kernel code.