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 6588601
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T17:04:05+00:00 2026-05-25T17:04:05+00:00

Having a boost::condition_variable which waits for a thread to complete: boost::condition_variable mContd; boost::shared_ptr<boost::thread> mThread;

  • 0

Having a boost::condition_variable which waits for a thread to complete:

boost::condition_variable mContd;
boost::shared_ptr<boost::thread> mThread;

Imagine, the Thread was started some time before, and now wait:

if(!mContd.timed_wait(tLock, boost::posix_time::seconds(1))) {
  // cancel thread if deadline is reached
  mThread.interrupt();
  mThread.join();

  std::cout 
    << "Thread count = " 
    << mThread.use_count() // still prints '1'
    << std::endl;

} else {
  // continue
}

So, when is this count set to a zero? I assumed, after a join a thread is finished. But when it is?

  • 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-05-25T17:04:05+00:00Added an answer on May 25, 2026 at 5:04 pm

    use_count() simply tells you how many shared_ptr object points to the same boost::thread object. It has nothing to do with whether the thread has terminated.

    The counter will automatically get decremented when mThread goes out of scope.

    If you no longer need the thread object, you could call mThread.reset(). That’ll also cause mThread.use_count() to go down to zero.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm having trouble getting intellisense to auto-complete shared pointers for boost 1.40.0. (It works
I'm having trouble statically linking an app which uses the boost 1.35 libraries. I'm
I'm currently having fun trying to learn some of the Boost libary. I'm currently
I'm having a problem with the following code: #include <list> #include <boost/shared_ptr.hpp> #include Protocol/IMessage.hpp
Im trying to change the thread priority in boost but im having no luck.
I've started using boost::signals2 instead of my old signals-code. I'm having a problem with
Is it possible to wait on a boost::condition_variable without having to acquire a mutex
I'm having some trouble figuring out the boost image library. I could not find
Having a thread that from time to time (thread with one function in infinite
I'm having a problem with CMake finding Boost headers (specifically thread ). In my

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.