Network.hh (10917:c38f28fad4c3) Network.hh (11064:386a5200e298)
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 100 unchanged lines hidden (view full) ---

109 static uint32_t m_virtual_networks;
110 Topology* m_topology_ptr;
111 static uint32_t m_control_msg_size;
112 static uint32_t m_data_msg_size;
113
114 // vector of queues from the components
115 std::vector<std::vector<MessageBuffer*> > m_toNetQueues;
116 std::vector<std::vector<MessageBuffer*> > m_fromNetQueues;
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 100 unchanged lines hidden (view full) ---

109 static uint32_t m_virtual_networks;
110 Topology* m_topology_ptr;
111 static uint32_t m_control_msg_size;
112 static uint32_t m_data_msg_size;
113
114 // vector of queues from the components
115 std::vector<std::vector<MessageBuffer*> > m_toNetQueues;
116 std::vector<std::vector<MessageBuffer*> > m_fromNetQueues;
117
118 std::vector<bool> m_in_use;
119 std::vector<bool> m_ordered;
120
121 private:
122 //! Callback class used for collating statistics from all the
123 //! controller of this type.
124 class StatsCallback : public Callback
125 {
126 private:

--- 23 unchanged lines hidden ---
117 std::vector<bool> m_ordered;
118
119 private:
120 //! Callback class used for collating statistics from all the
121 //! controller of this type.
122 class StatsCallback : public Callback
123 {
124 private:

--- 23 unchanged lines hidden ---