diff options
| author | 2014-05-20 18:20:35 -0400 | |
|---|---|---|
| committer | 2014-05-20 18:20:35 -0400 | |
| commit | f654a03f1f23bea8fe5bf7194614ce6e947d0c5c (patch) | |
| tree | d3d5d4a629c8cf55c5cfd17fda72d4339f064e16 /src/core/hle/kernel/thread.h | |
| parent | - created a Kernel namespace (diff) | |
| download | yuzu-f654a03f1f23bea8fe5bf7194614ce6e947d0c5c.tar.gz yuzu-f654a03f1f23bea8fe5bf7194614ce6e947d0c5c.tar.xz yuzu-f654a03f1f23bea8fe5bf7194614ce6e947d0c5c.zip | |
thread: whitespace change - fixed * and & placement
Diffstat (limited to 'src/core/hle/kernel/thread.h')
| -rw-r--r-- | src/core/hle/kernel/thread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index 207a5227b..72e9a416d 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h | |||
| @@ -22,14 +22,14 @@ enum ThreadProcessorId { | |||
| 22 | }; | 22 | }; |
| 23 | 23 | ||
| 24 | /// Creates a new thread - wrapper for external user | 24 | /// Creates a new thread - wrapper for external user |
| 25 | Handle __KernelCreateThread(const char *name, u32 entry_point, s32 priority, | 25 | Handle __KernelCreateThread(const char* name, u32 entry_point, s32 priority, |
| 26 | s32 processor_id, u32 stack_top, int stack_size=Kernel::DEFAULT_STACK_SIZE); | 26 | s32 processor_id, u32 stack_top, int stack_size=Kernel::DEFAULT_STACK_SIZE); |
| 27 | 27 | ||
| 28 | /// Sets up the primary application thread | 28 | /// Sets up the primary application thread |
| 29 | Handle __KernelSetupMainThread(s32 priority, int stack_size=Kernel::DEFAULT_STACK_SIZE); | 29 | Handle __KernelSetupMainThread(s32 priority, int stack_size=Kernel::DEFAULT_STACK_SIZE); |
| 30 | 30 | ||
| 31 | /// Reschedules to the next available thread (call after current thread is suspended) | 31 | /// Reschedules to the next available thread (call after current thread is suspended) |
| 32 | void __KernelReschedule(const char *reason); | 32 | void __KernelReschedule(const char* reason); |
| 33 | 33 | ||
| 34 | void __KernelThreadingInit(); | 34 | void __KernelThreadingInit(); |
| 35 | void __KernelThreadingShutdown(); | 35 | void __KernelThreadingShutdown(); |