diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2018-08-02 10:05:39 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2018-08-02 10:05:46 +0200 |
commit | c1cba3572547706f293920bd5dc44b30bc9e4d27 (patch) | |
tree | a32ad083917738f007843658ebe9ec5837d2ad9a /src | |
parent | f030410e88f11c5ff1ce6c80b463a1c7f6d39830 (diff) | |
parent | fe7180c5b2c37313722b8d21c33eec6ff011f26d (diff) |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/scheduler.h | 2 |
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. */ |