summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/handle_table.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* kernel/handle_table: Remove usages of the global system instanceLioncash2020-07-151-1/+6
| | | | | | Removes even more usages of the global system instance, trimming away more dependencies on global variables and making them explicit in the interface.
* kernel: Remove unnecessary includesLioncash2019-12-081-0/+2
| | | | | | Over the course of the changes to the kernel code, a few includes are no longer necessary, particularly with the change over to std::shared_ptr from Boost's intrusive_ptr.
* kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. (#3154)bunnei2019-11-251-4/+4
| | | | | | * kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. - See https://github.com/citra-emu/citra/pull/4710 for details.
* kernel/handle_table: Allow process capabilities to limit the handle table sizeLioncash2019-02-251-0/+21
| | | | | | | | | | The kernel allows restricting the total size of the handle table through the process capability descriptors. Until now, this functionality wasn't hooked up. With this, the process handle tables become properly restricted. In the case of metadata-less executables, the handle table will assume the maximum size is requested, preserving the behavior that existed before these changes.
* kernel/handle-table: In-class initialize data membersLioncash2019-02-251-2/+2
| | | | Directly initializes members where applicable.
* kernel/process: Introduce process capability parsing skeletonLioncash2018-12-211-3/+3
| | | | | | | We've had the old kernel capability parser from Citra, however, this is unused code and doesn't actually map to how the kernel on the Switch does it. This introduces the basic functional skeleton for parsing process capabilities.
* kernel/svc: Implement the resource limit svcGetInfo optionLioncash2018-12-041-0/+1
| | | | | Allows a process to register the resource limit as part of its handle table.
* kernel/handle_table: Move private static functions into the cpp fileLioncash2018-11-221-7/+0
| | | | | These don't depend on class state, and are effectively implementation details, so they can go into the cpp file .
* kernel/handle_table: Restrict handle table size to 1024 entriesLioncash2018-11-221-5/+2
| | | | | | The previous handle table size is a holdover from Citra. The actual handle table construct on Horizon only allows for a maximum of 1024 entries.
* kernel/handle_table: Default destructor in the cpp fileLioncash2018-11-221-0/+1
| | | | | We don't need to potentially inline the teardown logic of all of the handle instances.
* 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/+1
| | | | | | 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.
* handle_table: Remove ConvertSessionToDomain.bunnei2018-01-251-7/+0
|
* Format: Run the new clang format on everythingJames Rowe2018-01-211-1/+1
|
* kernel: Fix implementation of ConvertSessionToDomain.bunnei2017-12-291-0/+7
|
* Kernel: Move HandleTable to a separate fileYuri Kunde Schlesner2017-05-301-0/+126