AuroraRuntime/Include/Aurora/Threading
2023-04-30 08:24:27 +01:00
..
Primitives [*] Massive perf boost by removing atomic and 2023-04-03 08:21:44 +01:00
Threads [+] New TLSView implementation 2023-04-30 08:24:27 +01:00
Waitables [*] Massive perf boost by removing atomic and 2023-04-03 08:21:44 +01:00
IWaitable.hpp [*] Massive perf boost by removing atomic and 2023-04-03 08:21:44 +01:00
LockGuard.hpp [*] SOO aware lockguards 2023-03-22 23:08:17 +00:00
LockGuardTry.hpp [*] SOO aware lockguards 2023-03-22 23:08:17 +00:00
README SleepNote.txt [+] NS readmes 2022-06-12 18:28:51 +01:00
README.md [+] NS readmes 2022-06-12 18:28:51 +01:00
Sleep.hpp Initial Commit 2021-06-27 22:25:29 +01:00
Threading.hpp [+] IWaitable::LockNS(...) 2023-03-12 15:27:28 +00:00
WaitFor.hpp [*] cont 2022-01-19 18:37:09 +00:00
WakeOnAddress.hpp [+] IWaitable::LockNS(...) 2023-03-12 15:27:28 +00:00

AuThreading

Features

  • Thread synchronization primitives: condition ex, condition mutex, condition variable, critical section, event, mutex, rwlock, semaphore, and spinlock
  • All primitives include a trylock and a timed lock member
  • SleepNs function supporting higher resolution sleep available than in most APIs (^1)
  • Thread Object per native OS thread
  • Thread spawning with TLS handles and shutdown routines dispatched under pseudo fibers
  • Update thread affinity, throttle, name, and related attributes
  • Lock Util: AU_LOCK_GUARD(pointer/reference/shared ptr)
  • Lock Util: AU_TRY_LOCK_GUARD[...](pointer/reference/shared ptr)

^1: README SleepNote.txt