Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8397451
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T20:47:43+00:00 2026-06-09T20:47:43+00:00

I need to start a loop from an event and then stop it from

  • 0

I need to start a loop from an event and then stop it from another event.
My idea was to call the function startDequeuing() when I press the button so that a thread with the loop start and then to terminate this loop putting “dequeuing” variable at false from the function stopDequeuing().

It’s the first time I use thread, the program locks when I start the loop I think because the variable ‘dequeuing’ is locked and inaccessible from outside the thread, am I correct?

How can I solve this problem??

Here there is some code:

void CameraManager::startDequeuing(){
    dequeuing = true;
    std::thread dequeueThread(&CameraManager::dequeueLoop, this);
    dequeueThread.join();
}

void CameraManager::stopDequeuing(){
    dequeuing = false;
}

void *CameraManager::dequeueLoop(){
    while(dequeuing){
        highSpeedCamera->dequeue();
        highSpeedCamera->enqueue();
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T20:47:44+00:00Added an answer on June 9, 2026 at 8:47 pm

    The whole point of using threads is to get more than one function running in parallel. Here:

    std::thread dequeueThread(&CameraManager::dequeueLoop, this);
    dequeueThread.join();
    

    You start a second thread and put the first thread to sleep, waiting for the spawned thread to return. So you still have just one thread running. If you have so kind of GUI event loop, you might lock for a possibility to add a callback that will get called, when ever that event loop is empty. This might enable you to do what you want without using threads at all.

    A solution might look like this:

    void CameraManager::startDequeuing(){
        dequeuing = true;
        dequeueThread = std::thread(&CameraManager::dequeueLoop, this);
    }
    
    void CameraManager::stopDequeuing(){
        {
            std::lock_guard<std::mutex> lock( mutex );
            dequeuing = false;
        }
        dequeueThread.join();
    }
    
    bool CameraManager::keepOnDequeuing()
    {
        std::lock_guard<std::mutex> lock( mutex );
        return dequeuing;
    }
    
    void *CameraManager::dequeueLoop(){
        while( keepOnDequeuing() ){
            highSpeedCamera->dequeue();
            highSpeedCamera->enqueue();
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to (need to) start a sub-process from a perl script that checks
I need to start a copy of a Rails app from within Java. I
I need to start NSTimer by 0:0:0 that I am doing and I have
I need to start a project that will be json-API-centric, which means that most
I need start off with code because I am not sure what terminology to
I need to start up a jetty with an external (possibly remote) .war file
I need to start a Visual Basic script file by using WMI in a
I need to start a Unix process by calling a PHP-page through the web.
I need to start a program every time the user logs in, but I
Why do Perl variables need to start with different characters (sigils)? Scalar variables start

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.