ladybird/Libraries/LibThread/Thread.h
Andrew Kaster 0b38a553b1 LibThread: Allow setting thread name in constructor
Thread now has an optional thread_name parameter to the consturctor
that will call pthread_setname_np if given.
2019-12-08 14:09:29 +01:00

26 lines
428 B
C++

#pragma once
#include <AK/Function.h>
#include <AK/String.h>
#include <LibCore/CObject.h>
namespace LibThread {
class Thread final : public CObject {
C_OBJECT(Thread);
public:
explicit Thread(Function<int()> action, StringView thread_name = nullptr);
virtual ~Thread();
void start();
void quit(int code = 0);
private:
Function<int()> m_action;
int m_tid { -1 };
String m_thread_name;
};
}