aboutsummaryrefslogtreecommitdiff
path: root/src/scheduler.h
diff options
context:
space:
mode:
authorJesse Cohen <jc@jc.lol>2018-08-01 12:19:45 -0400
committerJesse Cohen <jc@jc.lol>2018-08-01 12:19:45 -0400
commitfe7180c5b2c37313722b8d21c33eec6ff011f26d (patch)
tree38e59015fb7710350f17f9bb1f9de063bd0e0171 /src/scheduler.h
parente83d82a85c53196aff5b5ac500f20bb2940663fa (diff)
downloadbitcoin-fe7180c5b2c37313722b8d21c33eec6ff011f26d.tar.xz
[trivial,doc] Fix memory consistency model in comment
Diffstat (limited to 'src/scheduler.h')
-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.
*/