Network.cc (8436:5648986156db) Network.cc (8645:89929730804b)
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;

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

25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include "base/misc.hh"
30#include "mem/protocol/MachineType.hh"
31#include "mem/ruby/network/Network.hh"
32#include "mem/ruby/network/Topology.hh"
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;

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

25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include "base/misc.hh"
30#include "mem/protocol/MachineType.hh"
31#include "mem/ruby/network/Network.hh"
32#include "mem/ruby/network/Topology.hh"
33#include "mem/ruby/system/System.hh"
33
34Network::Network(const Params *p)
35 : SimObject(p)
36{
37 m_virtual_networks = p->number_of_virtual_networks;
38 m_topology_ptr = p->topology;
39 m_control_msg_size = p->control_msg_size;
40

--- 56 unchanged lines hidden ---
34
35Network::Network(const Params *p)
36 : SimObject(p)
37{
38 m_virtual_networks = p->number_of_virtual_networks;
39 m_topology_ptr = p->topology;
40 m_control_msg_size = p->control_msg_size;
41

--- 56 unchanged lines hidden ---