AuroraRuntime/Include/Aurora/Threading
2023-06-07 20:35:31 +01:00
..
Primitives [+] Future proof IWaitable with Abs waits 2023-06-05 11:47:19 +01:00
Threads [+] AURT_ADD_USR_DATA usage across some relevant contexts 2023-06-04 17:28:29 +01:00
Waitables [*] Massive perf boost by removing atomic and 2023-04-03 08:21:44 +01:00
IWaitable.hpp [+] Future proof IWaitable with Abs waits 2023-06-05 11:47:19 +01:00
LockGuard.hpp [*] SOO aware lockguards 2023-03-22 23:08:17 +00:00
LockGuardTry.hpp [*] A patch to fix some of the regressions introduced in the first step in overhauling AuAsync 2023-06-07 20:35:31 +01: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