thread: whitespace change - fixed * and & placement

This commit is contained in:
bunnei 2014-05-20 18:20:35 -04:00
parent 44336329ed
commit f654a03f1f
2 changed files with 27 additions and 27 deletions

View file

@ -22,14 +22,14 @@ enum ThreadProcessorId {
};
/// Creates a new thread - wrapper for external user
Handle __KernelCreateThread(const char *name, u32 entry_point, s32 priority,
Handle __KernelCreateThread(const char* name, u32 entry_point, s32 priority,
s32 processor_id, u32 stack_top, int stack_size=Kernel::DEFAULT_STACK_SIZE);
/// Sets up the primary application thread
Handle __KernelSetupMainThread(s32 priority, int stack_size=Kernel::DEFAULT_STACK_SIZE);
/// Reschedules to the next available thread (call after current thread is suspended)
void __KernelReschedule(const char *reason);
void __KernelReschedule(const char* reason);
void __KernelThreadingInit();
void __KernelThreadingShutdown();