1
0
mirror of https://github.com/cathery/sys-con.git synced 2024-10-06 06:19:43 +00:00
sys-con/SwitchUSB/include/SwitchThread.h

37 lines
1.2 KiB
C
Raw Normal View History

#pragma once
#include "switch.h"
//Wrapper for switch thread implementation. Passed function will be called indefinitely until the thread closes.
class SwitchThread
{
private:
Thread m_thread;
bool m_isRunning = false;
ThreadFunc m_function;
void *m_argument;
static void ThreadLoop(void *argument);
public:
SwitchThread() = default;
//function - the function you want to be called
//argument - the argument passed to that function
//stackSize - the stack size of the created thread
//prio - thread priority, 0x00 - highest, 0x3F - lowest. Switch uses 0x2C
SwitchThread(ThreadFunc function, void *argument, size_t stackSize, int prio);
//SwitchThread isn't copy-movable, because the memory address of its variables is important
SwitchThread &operator=(const SwitchThread &other) = delete;
SwitchThread &operator=(const SwitchThread &&other) = delete;
//Closes the thread upon exiting
~SwitchThread();
//Starts the thread. This is called automatically upon class creation.
Result Start();
//This will block the caller indefinitely until the thread is returned!
Result Close();
bool inline IsRunning() { return m_isRunning; }
};