extra whitespace to render *-list as list
This worked fine on github but isn't displayed as a bulleted list on http://www.cglab.ca/~abeinges/blah/turpl/concurrency.html#send-and-sync
This commit is contained in:
parent
bb32315226
commit
e5d39f7abe
1 changed files with 1 additions and 0 deletions
|
|
@ -97,6 +97,7 @@ Almost all primitives are Send and Sync, and as a consequence pretty much
|
|||
all types you'll ever interact with are Send and Sync.
|
||||
|
||||
Major exceptions include:
|
||||
|
||||
* raw pointers are neither Send nor Sync (because they have no safety guards)
|
||||
* `UnsafeCell` isn't Sync (and therefore `Cell` and `RefCell` aren't)
|
||||
* `Rc` isn't Send or Sync (because the refcount is shared and unsynchronized)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue