aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2018-08-02 10:05:39 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2018-08-02 10:05:46 +0200
commitc1cba3572547706f293920bd5dc44b30bc9e4d27 (patch)
treea32ad083917738f007843658ebe9ec5837d2ad9a
parentf030410e88f11c5ff1ce6c80b463a1c7f6d39830 (diff)
parentfe7180c5b2c37313722b8d21c33eec6ff011f26d (diff)
downloadbitcoin-c1cba3572547706f293920bd5dc44b30bc9e4d27.tar.xz
Merge #13835: [trivial,doc] Fix memory consistency model in comment
fe7180c5b2c37313722b8d21c33eec6ff011f26d [trivial,doc] Fix memory consistency model in comment (Jesse Cohen) Pull request description: Updating a comment overlooked during review in #13247 Tree-SHA512: 0bd54ba1c265fdd77fd6e12ad0be46dd422348f7d926ce9abaca53fdb3a3c55c0d1cd90b4382321352076f4a81e2249c0014cd789f47a3637cb93bd983cb4657
-rw-r--r--src/scheduler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scheduler.h b/src/scheduler.h
index 421002ec17..66fd44d179 100644
--- a/src/scheduler.h
+++ b/src/scheduler.h
@@ -110,7 +110,7 @@ public:
/**
* Add a callback to be executed. Callbacks are executed serially
- * and memory is sequentially consistent between callback executions.
+ * and memory is release-acquire consistent between callback executions.
* Practially, this means that callbacks can behave as if they are executed
* in order by a single thread.
*/