diff options
| author | 2016-05-08 17:10:53 -0500 | |
|---|---|---|
| committer | 2016-05-12 20:01:59 -0500 | |
| commit | ac2de12ed8a7cc2759e25325f388db92b3f356a6 (patch) | |
| tree | f679398a60a1d330b6ac38bfffa051631f99d6e7 /src/core/hle/applets/applet.h | |
| parent | Kernel: Account for automatically-allocated shared memories in the amount of ... (diff) | |
| download | yuzu-ac2de12ed8a7cc2759e25325f388db92b3f356a6.tar.gz yuzu-ac2de12ed8a7cc2759e25325f388db92b3f356a6.tar.xz yuzu-ac2de12ed8a7cc2759e25325f388db92b3f356a6.zip | |
HLE/Applets: Give each applet its own block of heap memory, and use that when creating the framebuffer shared memory block.
Diffstat (limited to 'src/core/hle/applets/applet.h')
| -rw-r--r-- | src/core/hle/applets/applet.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/applets/applet.h b/src/core/hle/applets/applet.h index af442f81d..754c6f7db 100644 --- a/src/core/hle/applets/applet.h +++ b/src/core/hle/applets/applet.h | |||
| @@ -65,6 +65,7 @@ protected: | |||
| 65 | virtual ResultCode StartImpl(const Service::APT::AppletStartupParameter& parameter) = 0; | 65 | virtual ResultCode StartImpl(const Service::APT::AppletStartupParameter& parameter) = 0; |
| 66 | 66 | ||
| 67 | Service::APT::AppletId id; ///< Id of this Applet | 67 | Service::APT::AppletId id; ///< Id of this Applet |
| 68 | std::shared_ptr<std::vector<u8>> heap_memory; ///< Heap memory for this Applet | ||
| 68 | }; | 69 | }; |
| 69 | 70 | ||
| 70 | /// Returns whether a library applet is currently running | 71 | /// Returns whether a library applet is currently running |