DIY  2.0
data-parallel out-of-core C++ library
queues.hpp
1 #ifndef DIY_QUEUES_HPP
2 #define DIY_QUEUES_HPP
3 
4 namespace diy
5 {
6  class Queues
7  {
8 
9 
10  IncomingQueues& get_incoming(int lid); // load all the queues for this processor (if necessary)
11  OutgoingQueues& get_outgoing(int lid); // load if necessary
12 
13 
14  unload(int lid);
15 
16  };
17 }
18 
19 #endif
Definition: queues.hpp:6