Skip to content

Commit 884eb74

Browse files
committed
Rename mpsc to mpmc (fix #12)
1 parent 5652359 commit 884eb74

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
thread-pool-cpp
2-
=================
1+
thread-pool-cpp
2+
=================
33
[![Build Status](https://travis-ci.org/inkooboo/thread-pool-cpp.svg?branch=master)](https://travis-ci.org/inkooboo/thread-pool-cpp)
44
[![Codecov branch](https://img.shields.io/codecov/c/github/inkooboo/thread-pool-cpp/master.svg)](https://codecov.io/gh/inkooboo/thread-pool-cpp)
55
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
@@ -27,6 +27,6 @@ Post job to thread pool is much faster than for boost::asio based thread pool.
2727

2828
See benchmark/benchmark.cpp for benchmark code.
2929

30-
All code except [MPMCBoundedQueue](https://github.com/inkooboo/thread-pool-cpp/blob/master/include/thread_pool/mpsc_bounded_queue.hpp)
30+
All code except [MPMCBoundedQueue](https://github.com/inkooboo/thread-pool-cpp/blob/master/include/thread_pool/mpmc_bounded_queue.hpp)
3131
is under MIT license.
3232

File renamed without changes.

include/thread_pool/thread_pool.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#pragma once
22

33
#include <thread_pool/fixed_function.hpp>
4-
#include <thread_pool/mpsc_bounded_queue.hpp>
4+
#include <thread_pool/mpmc_bounded_queue.hpp>
55
#include <thread_pool/thread_pool_options.hpp>
66
#include <thread_pool/worker.hpp>
77

0 commit comments

Comments
 (0)