Unverified Commit 06a9cd55 authored by Ge Jun's avatar Ge Jun Committed by GitHub

Merge pull request #260 from qiaohaijun/patch-1

readable
parents 20098909 870b0ba8
...@@ -143,9 +143,9 @@ struct TaskOptions { ...@@ -143,9 +143,9 @@ struct TaskOptions {
bool in_place_if_possible; bool in_place_if_possible;
}; };
const static TaskOptions TASK_OPTIONS_NORMAL = TaskOptions(false, false); const static TaskOptions TASK_OPTIONS_NORMAL = TaskOptions(/*high_priority=*/ false, /*in_place_if_possible=*/ false);
const static TaskOptions TASK_OPTIONS_URGENT = TaskOptions(true, false); const static TaskOptions TASK_OPTIONS_URGENT = TaskOptions(/*high_priority=*/ true, /*in_place_if_possible=*/ false);
const static TaskOptions TASK_OPTIONS_INPLACE = TaskOptions(false, true); const static TaskOptions TASK_OPTIONS_INPLACE = TaskOptions(/*high_priority=*/ false, /*in_place_if_possible=*/ true);
// Thread-safe and Wait-free. // Thread-safe and Wait-free.
// Execute a task with defaut TaskOptions (normal task); // Execute a task with defaut TaskOptions (normal task);
......
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