Skip to content

0.2.0

Compare
Choose a tag to compare
@dktapps dktapps released this 06 May 11:11
· 33 commits to master since this release
13ff76e

Changes since 0.1.5

  • The use of a thread-safe map for tracking notifications (instead of flags on each notifier) improves performance substantially:
    • Notification processing with large numbers of notifiers is much faster, since it's not required to synchronize with and bruteforce-search for notifiers causing a wakeup (less locks, and also less CPU time wasted).
    • Less locks are required during delivery of notifications (locks only required on the shared object and not on notifiers).