Unverified Commit 88bf6106 authored by Ge Jun's avatar Ge Jun Committed by GitHub

Merge pull request #1004 from TousakaRin/fix_typo

fix typo
parents cd9bcea3 1657316a
......@@ -30,7 +30,7 @@ namespace bthread {
// ExecutionQueue is a special wait-free MPSC queue of which the consumer thread
// is auto started by the execute operation and auto quits if there are no more
// tasks, in another word there isn't a daemon bthread waiting to consume tasks
// tasks, in another word there isn't a daemon bthread waiting to consume tasks.
template <typename T> struct ExecutionQueueId;
template <typename T> class ExecutionQueue;
......@@ -77,7 +77,7 @@ private:
//
// Examples:
// int demo_execute(void* meta, TaskIterator<T>& iter) {
// if (iter.is_stopped()) {
// if (iter.is_queue_stopped()) {
// // destroy meta and related resources
// return 0;
// }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment