Files
2026-02-25 21:15:54 +08:00

15 lines
134 B
C++

#include "workthread.h"
workthread::workthread()
{
}
void workthread::run()
{
while(1)
{
thred_loop();
}
}