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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T12:45:49+00:00 2026-05-27T12:45:49+00:00

#include <exception> struct empty_stack: std::exception { const char* what() const throw(); }; template<typename T>

  • 0
#include <exception>
struct empty_stack: std::exception
{
    const char* what() const throw();
};
template<typename T>
class thread_safe_stack
{
private:
    std::stack<T> data;
    mutable std::mutex m;
public:
    stack(){}
    stack(const stack& other)
    {
        std::lock_guard<std::mutex> lock(other.m);
        data=other.data; 
    }
    stack& operator=(const stack&) = delete;
    void push(T new_value)
    {
        std::lock_guard<std::mutex> lock(m);
        data.push(new_value);
    }
    std::shared_ptr<T> pop()
    {
        std::lock_guard<std::mutex> lock(m);
        if(data.empty()) throw empty_stack(); 
            std::shared_ptr<T> const res(new T(data.top()); 
            data.pop();
        return res;
    }
    void pop(T& value)
    {
        std::lock_guard<std::mutex> lock(m); // #1
        if(data.empty()) throw empty_stack();
        value=data.top();
        data.pop();
    }
    bool empty() const
    {
        std::lock_guard<std::mutex> lock(m);
        return data.empty();
    }
};

Question How can the data.empty() return in the following statement,

if(data.empty()) throw empty_stack();

given the void pop(T& value) has locked the mutex already #1.

/// Updated ///

Here is my understanding,

#1 already lock the mutex and will release when the pop(T&value) returns. Now in the middle of this function, the code calls data.empty() which in turn locks the mutex again. Since the mutex has been locked, so the function empty cannot get it.

  • 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-27T12:45:50+00:00Added an answer on May 27, 2026 at 12:45 pm

    That’s a call to std::stack::empty, not thread_safe_stack::empty. So it isn’t trying to acquire the mutex a second time.

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

Sidebar

Related Questions

I have an exception class as follows: #include <exception> struct InvalidPathException : public std::exception
Given this sample code: #include <iostream> #include <stdexcept> class my_exception_t : std::exception { public:
#include<iostream> using namespace std; class A { int a; int b; public: void eat()
Consider the following program #include <iostream> #include<cstdlib> using namespace std; class E { public:
#include <iostream> using namespace std; struct Term; struct Node; typedef Term* termPtr; typedef Node*
#include <iostream> using namespace std; struct node { int v; node* next; node (int
Consider the following horribleness: #include <iostream> struct thing { thing() { std::cout << thing
If I generate an exception on my own, I can include any info into
#include <iostream> using namespace std; int main() { double u = 0; double w
#include <vector> std::vector<long int> as; long int a(size_t n){ if(n==1) return 1; if(n==2) return

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.