update-check: formatting code using astyle; some manual code nicenings

Origin commit data
------------------
Commit: 532ee81f55
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-12-04 (Sat, 04 Dec 2021)

Origin message was:
------------------
- update-check: formatting code using astyle; some manual code nicenings
This commit is contained in:
vanhofen
2021-12-04 23:22:35 +01:00
parent 1d8f13318c
commit 619d7847bd
2 changed files with 10 additions and 12 deletions

View File

@@ -40,8 +40,6 @@
#define C4U_SLEEP (6 * 60 * 60) // 6 hours #define C4U_SLEEP (6 * 60 * 60) // 6 hours
#define C4U_FLAGFILE FLAGDIR "/.update" #define C4U_FLAGFILE FLAGDIR "/.update"
/* ----------------------------------------------------------------- */
CFlashUpdateCheck::CFlashUpdateCheck() CFlashUpdateCheck::CFlashUpdateCheck()
{ {
c4u_thread = 0; c4u_thread = 0;
@@ -52,9 +50,9 @@ CFlashUpdateCheck::~CFlashUpdateCheck()
stopThread(); stopThread();
} }
CFlashUpdateCheck* CFlashUpdateCheck::getInstance() CFlashUpdateCheck *CFlashUpdateCheck::getInstance()
{ {
static CFlashUpdateCheck * c4u = NULL; static CFlashUpdateCheck *c4u = NULL;
if (!c4u) if (!c4u)
c4u = new CFlashUpdateCheck(); c4u = new CFlashUpdateCheck();
@@ -66,7 +64,7 @@ void CFlashUpdateCheck::startThread()
if (!c4u_thread) if (!c4u_thread)
{ {
printf("[CFlashUpdateCheck]: starting thread\n"); printf("[CFlashUpdateCheck]: starting thread\n");
pthread_create(&c4u_thread, NULL, c4u_proc, (void*) NULL); pthread_create(&c4u_thread, NULL, c4u_proc, (void *) NULL);
pthread_detach(c4u_thread); pthread_detach(c4u_thread);
} }
} }
@@ -84,7 +82,7 @@ void CFlashUpdateCheck::stopThread()
unlink(C4U_FLAGFILE); unlink(C4U_FLAGFILE);
} }
void* CFlashUpdateCheck::c4u_proc(void*) void *CFlashUpdateCheck::c4u_proc(void *)
{ {
set_threadname("n:flashupdatecheck"); set_threadname("n:flashupdatecheck");
@@ -94,7 +92,7 @@ void* CFlashUpdateCheck::c4u_proc(void*)
CFlashUpdate flashupdate; CFlashUpdate flashupdate;
//printf("[CFlashUpdateCheck] %s: starting loop\n", __FUNCTION__); //printf("[CFlashUpdateCheck] %s: starting loop\n", __FUNCTION__);
while(1) while (1)
{ {
//printf("[CFlashUpdateCheck]: check for updates\n"); //printf("[CFlashUpdateCheck]: check for updates\n");
if (flashupdate.checkOnlineVersion()) if (flashupdate.checkOnlineVersion())

View File

@@ -30,15 +30,15 @@ class CFlashUpdateCheck
public: public:
CFlashUpdateCheck(); CFlashUpdateCheck();
~CFlashUpdateCheck(); ~CFlashUpdateCheck();
static CFlashUpdateCheck* getInstance(); static CFlashUpdateCheck *getInstance();
void startThread(); void startThread();
void stopThread(); void stopThread();
private: private:
pthread_t c4u_thread; pthread_t c4u_thread;
static void* c4u_proc(void *arg); static void *c4u_proc(void *arg);
}; };
#endif // __update_check__ #endif // __update_check__