Changes

Jump to: navigation, search

Team Darth Vector

13 bytes added, 20:30, 16 December 2017
m
List of TBB containers
</pre>
==List of A Comparison from 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). Also supports iterations, but are slow and are only intended for debugdebugging a program. This is defined within the header "'''tbb/concurrent_queue.h'''" and is coded as: <pre>
#include <tbb/concurrent_queue.h>
//....//
129
edits

Navigation menu