DNedic / lockfree

A collection of lock-free data structures written in standard C++11
MIT License
795 stars 49 forks source link

fix(tests): Fix multithreaded RB test #13

Closed DNedic closed 11 months ago

DNedic commented 11 months ago

This fixes the issue where the multithreaded RB test introduced in #10 was not accounting for write failiures when the producer thread runs too far ahead of the consumer, now we are checking the write result.

DNedic commented 11 months ago

@DrDub PTAL for future tests.

DrDub commented 10 months ago

Perfect, thank you!