Skip to content
EECS 4340 Final Review

Transactional memory

Tag: transactional-memory

Aliases: TM, HTM, STM

An optimistic concurrency-control mechanism that executes a critical section speculatively and commits atomically if no conflicting accesses occurred, otherwise rolls back. Trades hardware/software complexity for higher concurrency under low contention.

No references yet.