mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
b58f8d19ab
Since all queues are FIFO data structures, the name wasn't informative as to why you'd use it over a normal queue. I originally thought it had something to do with the hardware graphics FIFO. This renames it using the common acronym SPSC, which stands for single-producer single-consumer, and is most commonly used to talk about lock-free data structures, both of which this is.
16 lines
732 B
CMake
16 lines
732 B
CMake
add_dolphin_test(BitFieldTest BitFieldTest.cpp)
|
|
add_dolphin_test(BitSetTest BitSetTest.cpp)
|
|
add_dolphin_test(BitUtilsTest BitUtilsTest.cpp)
|
|
add_dolphin_test(BlockingLoopTest BlockingLoopTest.cpp)
|
|
add_dolphin_test(BusyLoopTest BusyLoopTest.cpp)
|
|
add_dolphin_test(CommonFuncsTest CommonFuncsTest.cpp)
|
|
add_dolphin_test(EventTest EventTest.cpp)
|
|
add_dolphin_test(FixedSizeQueueTest FixedSizeQueueTest.cpp)
|
|
add_dolphin_test(FlagTest FlagTest.cpp)
|
|
add_dolphin_test(MathUtilTest MathUtilTest.cpp)
|
|
add_dolphin_test(NandPathsTest NandPathsTest.cpp)
|
|
add_dolphin_test(SPSCQueueTest SPSCQueueTest.cpp)
|
|
add_dolphin_test(StringUtilTest StringUtilTest.cpp)
|
|
add_dolphin_test(SwapTest SwapTest.cpp)
|
|
add_dolphin_test(x64EmitterTest x64EmitterTest.cpp)
|