Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 338 Bytes

File metadata and controls

9 lines (7 loc) · 338 Bytes

ThreadedLockness

Lockless Data Type Research Project, the aim is to develop data types that are thread-safe absent a operating system level lock (critical section) and without using Monitor.Enter, or the lock statement.

Goals

  • Thread Safe Linked List
  • Thread Safe Dynamic Array
  • Thread Safe HashSet
  • Unit Tests for each class