Network.cc (9275:ef43e69c837a) Network.cc (9465:4ae4f3f4b870)
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;

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

32#include "mem/ruby/network/Topology.hh"
33#include "mem/ruby/system/System.hh"
34
35uint32_t Network::m_virtual_networks;
36uint32_t Network::m_control_msg_size;
37uint32_t Network::m_data_msg_size;
38
39Network::Network(const Params *p)
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;

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

32#include "mem/ruby/network/Topology.hh"
33#include "mem/ruby/system/System.hh"
34
35uint32_t Network::m_virtual_networks;
36uint32_t Network::m_control_msg_size;
37uint32_t Network::m_data_msg_size;
38
39Network::Network(const Params *p)
40 : SimObject(p)
40 : ClockedObject(p)
41{
42 m_virtual_networks = p->number_of_virtual_networks;
43 m_topology_ptr = p->topology;
44 m_control_msg_size = p->control_msg_size;
45
46 // Total nodes/controllers in network
47 // Must make sure this is called after the State Machine constructors
48 m_nodes = MachineType_base_number(MachineType_NUM);

--- 53 unchanged lines hidden ---
41{
42 m_virtual_networks = p->number_of_virtual_networks;
43 m_topology_ptr = p->topology;
44 m_control_msg_size = p->control_msg_size;
45
46 // Total nodes/controllers in network
47 // Must make sure this is called after the State Machine constructors
48 m_nodes = MachineType_base_number(MachineType_NUM);

--- 53 unchanged lines hidden ---