1/*
2 * Copyright (c) 2009 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;

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

132 protected:
133 NodeID m_version;
134 MachineID m_machineID;
135 NodeID m_clusterID;
136
137 Network* m_net_ptr;
138 bool m_is_blocking;
139 std::map<Address, MessageBuffer*> m_block_map;
140
141 typedef std::vector<MessageBuffer*> MsgVecType;
142 typedef std::map< Address, MsgVecType* > WaitingBufType;
143 WaitingBufType m_waiting_buffers;
144
145 unsigned int m_in_ports;
146 unsigned int m_cur_in_port;
147 int m_number_of_TBEs;
148 int m_transitions_per_cycle;
149 int m_buffer_size;
150 Cycles m_recycle_latency;
151
152 //! Map from physical network number to the Message Buffer.

--- 26 unchanged lines hidden ---