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_FLAGFILE FLAGDIR "/.update"
/* ----------------------------------------------------------------- */
CFlashUpdateCheck::CFlashUpdateCheck()
{
c4u_thread = 0;
@@ -52,9 +50,9 @@ CFlashUpdateCheck::~CFlashUpdateCheck()
stopThread();
}
CFlashUpdateCheck* CFlashUpdateCheck::getInstance()
CFlashUpdateCheck *CFlashUpdateCheck::getInstance()
{
static CFlashUpdateCheck * c4u = NULL;
static CFlashUpdateCheck *c4u = NULL;
if (!c4u)
c4u = new CFlashUpdateCheck();
@@ -66,7 +64,7 @@ void CFlashUpdateCheck::startThread()
if (!c4u_thread)
{
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);
}
}
@@ -84,7 +82,7 @@ void CFlashUpdateCheck::stopThread()
unlink(C4U_FLAGFILE);
}
void* CFlashUpdateCheck::c4u_proc(void*)
void *CFlashUpdateCheck::c4u_proc(void *)
{
set_threadname("n:flashupdatecheck");
@@ -94,7 +92,7 @@ void* CFlashUpdateCheck::c4u_proc(void*)
CFlashUpdate flashupdate;
//printf("[CFlashUpdateCheck] %s: starting loop\n", __FUNCTION__);
while(1)
while (1)
{
//printf("[CFlashUpdateCheck]: check for updates\n");
if (flashupdate.checkOnlineVersion())

View File

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