Shared - Another Thread

Dominikus Dittes Scherkl dominikus at scherkl.de
Sat Oct 20 02:09:56 UTC 2018


On Saturday, 20 October 2018 at 00:46:36 UTC, Nicholas Wilson 
wrote:
> Mutable = value may change
> const = I will not change the value
> immutable = the value will not change
>
> unshared = I (well the current thread) owns the reference
> shared = reference not owned, no unordered access, no 
> (unordered) writes
> threadsafe = ???
unshared = the current thread owns the reference
threadsafe = I guarantee no race conditions or deadlocks will 
occur
shared = every thread may have references


More information about the Digitalmars-d mailing list