Kernel: Introduce skeleton Process class to hold process data

This commit is contained in:
Yuri Kunde Schlesner 2015-05-04 00:01:16 -03:00
parent 8809d02db3
commit 6d60acf0f1
13 changed files with 191 additions and 48 deletions

View file

@ -7,6 +7,7 @@
#include <boost/intrusive_ptr.hpp>
#include <array>
#include <memory>
#include <string>
#include <vector>
@ -15,6 +16,8 @@
#include "core/hle/hle.h"
#include "core/hle/result.h"
struct ApplicationInfo;
namespace Kernel {
class Thread;
@ -282,11 +285,4 @@ void Init();
/// Shutdown the kernel
void Shutdown();
/**
* Loads executable stored at specified address
* @entry_point Entry point in memory of loaded executable
* @return True on success, otherwise false
*/
bool LoadExec(u32 entry_point);
} // namespace