summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/handle_table.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi2018-09-151-1/+1
|
* kernel: Eliminate kernel global stateLioncash2018-08-291-2/+0
| | | | | | | | | | | | | | | | | | | | | | As means to pave the way for getting rid of global state within core, This eliminates kernel global state by removing all globals. Instead this introduces a KernelCore class which acts as a kernel instance. This instance lives in the System class, which keeps its lifetime contained to the lifetime of the System class. This also forces the kernel types to actually interact with the main kernel instance itself instead of having transient kernel state placed all over several translation units, keeping everything together. It also has a nice consequence of making dependencies much more explicit. This also makes our initialization a tad bit more correct. Previously we were creating a kernel process before the actual kernel was initialized, which doesn't really make much sense. The KernelCore class itself follows the PImpl idiom, which allows keeping all the implementation details sealed away from everything else, which forces the use of the exposed API and allows us to avoid any unnecessary inclusions within the main kernel header.
* kernel/error: Add error code for the handle table being fullLioncash2018-08-251-1/+1
| | | | | This replaces the lingering 3DS constant with the proper one, and utilizes it within HandleTable's Create() member function.
* kernel: Move object class to its own source filesLioncash2018-08-021-1/+0
| | | | | | 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.
* Rename logging macro back to LOG_*James Rowe2018-07-031-2/+2
|
* kernel: Migrate logging macros to fmt-compatible onesLioncash2018-04-261-2/+2
|
* core: Move process creation out of global state.bunnei2018-03-141-1/+2
|
* handle_table: Remove ConvertSessionToDomain.bunnei2018-01-251-10/+0
|
* Format: Run the new clang format on everythingJames Rowe2018-01-211-1/+1
|
* kernel: Fix implementation of ConvertSessionToDomain.bunnei2017-12-291-0/+10
|
* Kernel: Move HandleTable to a separate fileYuri Kunde Schlesner2017-05-301-0/+97