Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions include/queue/wait_queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
*
* ## Overview
*
* This class allows transferring data between threads with queue semantics (push, pop),
* using C++ std library general facilities (mutex, condition variable). An internal
* container is managed within this class.
* This class template allows transferring data between threads with queue semantics
* (push, pop), using C++ std library general facilities (mutex, condition variable).
* An internal container is managed within an object of this class template.
*
* Multiple writer and reader threads can access a @c wait_queue object simultaneously.
* When a value is pushed on the queue by a writer thread, only one reader thread will be
Expand Down
10 changes: 5 additions & 5 deletions test/wait_queue_test.cpp
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/** @file
*
* @brief Test scenarios for @c wait_queue class template.
* @brief Test scenarios for @c wait_queue class template.
*
* @author Cliff Green
* @author Cliff Green
*
* Copyright (c) 2017-2024 by Cliff Green
* Copyright (c) 2017-2024 by Cliff Green
*
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
*
*/

Expand Down