diff options
Diffstat (limited to 'works/life/computer-network-experiment/Output.cpp')
-rw-r--r-- | works/life/computer-network-experiment/Output.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/works/life/computer-network-experiment/Output.cpp b/works/life/computer-network-experiment/Output.cpp index ac4a47b..2968c19 100644 --- a/works/life/computer-network-experiment/Output.cpp +++ b/works/life/computer-network-experiment/Output.cpp @@ -1,6 +1,6 @@ #include "Output.h"
-folly::MPMCQueue<Output> output_queue;
+folly::MPMCQueue<Output> output_queue(100);
void OutputThread() {
while (true) {
|