blob: bc5f18a4694fa84a28a760b87a3aa4581753d678 (
plain) (
blame)
1
2
3
4
5
6
7
|
package stm
import "sync"
// The globalLock serializes transaction verification/committal. globalCond is
// used to signal that at least one Var has changed.
var globalLock sync.Mutex
|