You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 15, 2021. It is now read-only.
Array.h describes itself as "A re-entrant array class". The implementation provides synchronization around array extension, but there is no mechanism to provide synchronization in access to individual array elements for element types that are not single copy atomic.
Consider two threads executing:
a[n] = b and x = a[n]
for some specific value of n in parallel, 'x' may observe a partial copy of 'b'.
The text was updated successfully, but these errors were encountered:
Array.h describes itself as "A re-entrant array class". The implementation provides synchronization around array extension, but there is no mechanism to provide synchronization in access to individual array elements for element types that are not single copy atomic.
Consider two threads executing:
a[n] = b and x = a[n]
for some specific value of n in parallel, 'x' may observe a partial copy of 'b'.
The text was updated successfully, but these errors were encountered: