Searched refs:bounded_buffer_list_based (Results 1 – 2 of 2) sorted by relevance
153 class bounded_buffer_list_based { class161 explicit bounded_buffer_list_based(size_type capacity) : m_capacity(capacity) {} in bounded_buffer_list_based() function in bounded_buffer_list_based165 … m_not_full.wait(lock, boost::bind(&bounded_buffer_list_based<value_type>::is_not_full, this)); in push_front()173 … m_not_empty.wait(lock, boost::bind(&bounded_buffer_list_based<value_type>::is_not_empty, this)); in pop_back()182 …bounded_buffer_list_based(const bounded_buffer_list_based&); // Disabled copy constru…183 …bounded_buffer_list_based& operator = (const bounded_buffer_list_based&); // Disabled assign opera…271 bounded_buffer_list_based<int> bb_list_based_int(QUEUE_SIZE); in main()287 bounded_buffer_list_based<std::string> bb_list_based_string(QUEUE_SIZE); in main()