aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/kernel/shared_memory.h
Commit message (Collapse)AuthorAge
* Core: Fix applet includes using iwyu.Gravatar Emmanuel Gil Peyrot2015-07-12
|
* Kernel: Capture SharedMemory attributes at creation, not when mappingGravatar Yuri Kunde Schlesner2015-05-10
|
* Kernel: Stop creating useless Handles during object creationGravatar Yuri Kunde Schlesner2015-02-02
| | | | | They're finally unnecessary, and will stop cluttering the application's handle table.
* Explicitly instantiate constructors/destructors for Kernel objectsGravatar Yuri Kunde Schlesner2015-02-02
| | | | | | This should speed up compile times a bit, as well as enable more liberal use of forward declarations. (Due to SharedPtr not trying to emit the destructor anymore.)
* shared_memory: Fix assignments in SharedMemory::MapGravatar Lioncash2015-01-30
|
* Kernel: Mark all appropriate kernel objects as "final"Gravatar Yuri Kunde Schlesner2015-01-30
|
* Kernel: Convert SharedMemory to not use HandlesGravatar Yuri Kunde Schlesner2015-01-30
|
* License changeGravatar purpasmart962014-12-20
|
* Merge pull request #185 from purpasmart96/mem_permGravatar bunnei2014-12-17
|\ | | | | Kernel: Add missing permissions
* | Remove duplicated docs/update them for changed parameters.Gravatar Yuri Kunde Schlesner2014-11-24
| |
* | HLE: Revamp error handling throrough the HLE codeGravatar Yuri Kunde Schlesner2014-11-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All service calls in the CTR OS return result codes indicating the success or failure of the call. Previous to this commit, Citra's HLE emulation of services and the kernel universally either ignored errors or returned dummy -1 error codes. This commit makes an initial effort to provide an infrastructure for error reporting and propagation which can be use going forward to make HLE calls accurately return errors as the original system. A few parts of the code have been updated to use the new system where applicable. One part of this effort is the definition of the `ResultCode` type, which provides facilities for constructing and parsing error codes in the structured format used by the CTR. The `ResultVal` type builds on `ResultCode` by providing a container for values returned by function that can report errors. It enforces that correct error checking will be done on function returns by preventing the use of the return value if the function returned an error code. Currently this change is mostly internal since errors are still suppressed on the ARM<->HLE border, as a temporary compatibility hack. As functionality is implemented and tested this hack can be eventually removed.
* | Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ↵Gravatar Emmanuel Gil Peyrot2014-11-19
| | | | | | | | or generated
| * Kernel:Add missing permissions in shared memory & svcGravatar purpasmart962014-11-18
|/
* SharedMemory: Updated MapSharedMemory to use an enum for permissions.Gravatar bunnei2014-07-05
| | | | - Also added some safety checks to MapSharedMemory.
* Kernel: Added support for shared memory objects.Gravatar bunnei2014-07-05
SharedMemory: Added optional name field for tracking known objects.