I\'m new with C++ pthreads. What I\'m trying to do is use one thread to catch UDP packets and put it into a queue, and another one to process them and send them after. My qu
you need to initialize the static member, add std::queue<int> A::bufferInbound; after the class or move it inside your function.
std::queue<int> A::bufferInbound;