queues-fragmented.cc 239 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include<iostream>
#include<embb/containers/lock_free_mpmc_queue.h>
#include<embb/containers/wait_free_spsc_queue.h>

void RunQueueExample1()
{
  #include "containers/queues-snippet.h"
}


void RunQueueExamples()
{
  RunQueueExample1();
}