MCPcopy Create free account
hub / github.com/cjcliffe/CubicSDR / ThreadBlockingQueue

Method ThreadBlockingQueue

src/util/ThreadBlockingQueue.h:41–44  ·  view source on GitHub ↗

! Create safe blocking queue. */

Source from the content-addressed store, hash-verified

39
40 /*! Create safe blocking queue. */
41 ThreadBlockingQueue() {
42 //at least 1 (== Java SynchronizedQueue)
43 m_max_num_items = MIN_ITEM_NB;
44 };
45
46 //Forbid Copy construction.
47 ThreadBlockingQueue(const ThreadBlockingQueue& sq) = delete;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected