diff options
| author | 2015-05-04 00:01:16 -0300 | |
|---|---|---|
| committer | 2015-05-08 22:11:02 -0300 | |
| commit | 6d60acf0f1afcae873988da5218f2f1c7bc9d151 (patch) | |
| tree | cec75198ab74759002dd1da78f6ac2af5e61949f /src/core/hle/kernel/kernel.h | |
| parent | Common: Add StringFromFixedZeroTerminatedBuffer (diff) | |
| download | yuzu-6d60acf0f1afcae873988da5218f2f1c7bc9d151.tar.gz yuzu-6d60acf0f1afcae873988da5218f2f1c7bc9d151.tar.xz yuzu-6d60acf0f1afcae873988da5218f2f1c7bc9d151.zip | |
Kernel: Introduce skeleton Process class to hold process data
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
| -rw-r--r-- | src/core/hle/kernel/kernel.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h index a7bc6b71a..d0c69677a 100644 --- a/src/core/hle/kernel/kernel.h +++ b/src/core/hle/kernel/kernel.h | |||
| @@ -7,6 +7,7 @@ | |||
| 7 | #include <boost/intrusive_ptr.hpp> | 7 | #include <boost/intrusive_ptr.hpp> |
| 8 | 8 | ||
| 9 | #include <array> | 9 | #include <array> |
| 10 | #include <memory> | ||
| 10 | #include <string> | 11 | #include <string> |
| 11 | #include <vector> | 12 | #include <vector> |
| 12 | 13 | ||
| @@ -15,6 +16,8 @@ | |||
| 15 | #include "core/hle/hle.h" | 16 | #include "core/hle/hle.h" |
| 16 | #include "core/hle/result.h" | 17 | #include "core/hle/result.h" |
| 17 | 18 | ||
| 19 | struct ApplicationInfo; | ||
| 20 | |||
| 18 | namespace Kernel { | 21 | namespace Kernel { |
| 19 | 22 | ||
| 20 | class Thread; | 23 | class Thread; |
| @@ -282,11 +285,4 @@ void Init(); | |||
| 282 | /// Shutdown the kernel | 285 | /// Shutdown the kernel |
| 283 | void Shutdown(); | 286 | void Shutdown(); |
| 284 | 287 | ||
| 285 | /** | ||
| 286 | * Loads executable stored at specified address | ||
| 287 | * @entry_point Entry point in memory of loaded executable | ||
| 288 | * @return True on success, otherwise false | ||
| 289 | */ | ||
| 290 | bool LoadExec(u32 entry_point); | ||
| 291 | |||
| 292 | } // namespace | 288 | } // namespace |