renamed joinThread getter setter

This commit is contained in:
Erik Frojdh
2018-10-17 17:47:19 +02:00
parent 0070a79838
commit b44039361d
2 changed files with 13 additions and 15 deletions

View File

@ -1666,13 +1666,13 @@ private:
* Check if processing thread is ready to join main thread
* @returns true if ready, else false
*/
int checkJoinThread();
bool getJoinThreadFlag();
/**
* Main thread sets if the processing thread should join it
* @param v true if it should join, else false
*/
void setJoinThread(int v);
void setJoinThreadFlag(bool value);
/**
* Listen to key event to stop acquiring
@ -1719,7 +1719,7 @@ private:
std::mutex mg;
/** sets when the acquisition is finished */
int jointhread;
bool jointhread;
/** set when detector finishes acquiring */
int acquiringDone;