#include #include #include #include #include #include #include int hello_thread() { int last_tm_sec = -1; WHBLogPrintf("Hello World from a std::thread!"); while(WHBProcIsRunning()) { OSCalendarTime tm; OSTicksToCalendarTime(OSGetTime(), &tm); if (tm.tm_sec != last_tm_sec) { WHBLogPrintf("%02d/%02d/%04d %02d:%02d:%02d I'm still here.", tm.tm_mday, tm.tm_mon, tm.tm_year, tm.tm_hour, tm.tm_min, tm.tm_sec); last_tm_sec = tm.tm_sec; } WHBLogConsoleDraw(); OSSleepTicks(OSMillisecondsToTicks(100)); } WHBLogPrintf("Exiting... good bye."); WHBLogConsoleDraw(); OSSleepTicks(OSMillisecondsToTicks(1000)); return 0; } int main(int argc, char **argv) { WHBProcInit(); WHBLogConsoleInit(); std::thread t(hello_thread); t.join(); WHBLogConsoleFree(); WHBProcShutdown(); return 0; }