thread.h 404 B

12345678910111213141516
  1. // Copyright 2014 Citra Emulator Project / PPSSPP Project
  2. // Licensed under GPLv2
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include "common/common_types.h"
  6. #include "core/hle/kernel/kernel.h"
  7. class Thread;
  8. /// Sets up the primary application thread
  9. Handle __KernelSetupMainThread(s32 priority, int stack_size=0x4000);
  10. void __KernelThreadingInit();
  11. void __KernelThreadingShutdown();