diff options
| author | Jesse Cohen <[email protected]> | 2018-08-01 12:19:45 -0400 |
|---|---|---|
| committer | Jesse Cohen <[email protected]> | 2018-08-01 12:19:45 -0400 |
| commit | fe7180c5b2c37313722b8d21c33eec6ff011f26d (patch) | |
| tree | 38e59015fb7710350f17f9bb1f9de063bd0e0171 /src | |
| parent | Merge #13247: Add tests to SingleThreadedSchedulerClient() and document the m... (diff) | |
| download | discoin-fe7180c5b2c37313722b8d21c33eec6ff011f26d.tar.xz discoin-fe7180c5b2c37313722b8d21c33eec6ff011f26d.zip | |
[trivial,doc] Fix memory consistency model in comment
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 421002ec1..66fd44d17 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. */ |