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
The ProcessTable newtype (currently Map ProcessId ProcessContext) and associated actions would encapsulate all operations (within STM) which affect two or more processes (e.g., link, unlink, monitor,...).
By properly encapsulating this, we can be "more certain" various transactions are each other's inverse (e.g., unlink undoes what link does), and test this (likely using some model/stateful testing approach).
The text was updated successfully, but these errors were encountered:
The
ProcessTable
newtype (currentlyMap ProcessId ProcessContext
) and associated actions would encapsulate all operations (within STM) which affect two or more processes (e.g.,link
,unlink
,monitor
,...).By properly encapsulating this, we can be "more certain" various transactions are each other's inverse (e.g.,
unlink
undoes whatlink
does), and test this (likely using some model/stateful testing approach).The text was updated successfully, but these errors were encountered: