Open main menu

CDOT Wiki β

Changes

Team Darth Vector

109 bytes added, 15:27, 9 December 2017
List of TBB containers:
===List of TBB containers:===
'''<u>concurrent_queue</u>''' : This is the concurrent version of the STL container Queue. This container supports first-in-first-out data storage like its STL counterpart. Multiple threads may simultaneously push and pop elements from the queue. Queue does NOT support and front() or back() in concurrent operations(the front could change while accessing). This is defined within the header "'''tbb/concurrent_queue.h'''" and is coded as: <pre>
#include <tbb/concurrent_queue.h>
//....//
'''Threads'''
 
 
==Lock Convoying Problem==
129
edits