aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner <yuriks@yuriks.net>2015-05-08 18:11:06 -0300
committerGravatar Yuri Kunde Schlesner <yuriks@yuriks.net>2015-05-08 22:11:49 -0300
commit83ccf85bb2dcd369e105caf35f830d58a1b608bf (patch)
tree2c3cd71e799a32769767bef4d1cdd8dbbfa57e2f
parent2f5904611dec1c2bf00f4c8d520e43bd4eff4c01 (diff)
Process: Add more documentation to the class members
-rw-r--r--src/core/hle/kernel/process.h18
1 files changed, 16 insertions, 2 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h
index 16151bb2..260db8a6 100644
--- a/src/core/hle/kernel/process.h
+++ b/src/core/hle/kernel/process.h
@@ -55,15 +55,29 @@ public:
static const HandleType HANDLE_TYPE = HandleType::Process;
HandleType GetHandleType() const override { return HANDLE_TYPE; }
- std::string name; ///< Name of the process
+ /// Name of the process
+ std::string name;
+ /// Title ID corresponding to the process
u64 program_id;
+ /// The process may only call SVCs which have the corresponding bit set.
std::bitset<0x80> svc_access_mask;
+ /// Maximum size of the handle table for the process.
unsigned int handle_table_size = 0x200;
- boost::container::static_vector<StaticAddressMapping, 8> static_address_mappings; // TODO: Determine a good upper limit
+ /// Special memory ranges mapped into this processes address space. This is used to give
+ /// processes access to specific I/O regions and device memory.
+ boost::container::static_vector<StaticAddressMapping, 8> static_address_mappings;
ProcessFlags flags;
+ /**
+ * Parses a list of kernel capability descriptors (as found in the ExHeader) and applies them
+ * to this process.
+ */
void ParseKernelCaps(const u32* kernel_caps, size_t len);
+
+ /**
+ * Applies address space changes and launches the process main thread.
+ */
void Run(VAddr entry_point, s32 main_thread_priority, u32 stack_size);
private: