summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
-rw-r--r--src/core/hle/kernel/kernel.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h
index ab06fa025..80a09cadc 100644
--- a/src/core/hle/kernel/kernel.h
+++ b/src/core/hle/kernel/kernel.h
@@ -11,18 +11,9 @@
11#include <vector> 11#include <vector>
12 12
13#include "common/common.h" 13#include "common/common.h"
14#include "core/hle/hle.h"
14#include "core/hle/result.h" 15#include "core/hle/result.h"
15 16
16typedef u32 Handle;
17typedef s32 Result;
18
19// TODO: It would be nice to eventually replace these with strong types that prevent accidental
20// conversion between each other.
21typedef u32 VAddr; ///< Represents a pointer in the userspace virtual address space.
22typedef u32 PAddr; ///< Represents a pointer in the ARM11 physical address space.
23
24const Handle INVALID_HANDLE = 0;
25
26namespace Kernel { 17namespace Kernel {
27 18
28class Thread; 19class Thread;