BasicRouter.cc (9465:4ae4f3f4b870) BasicRouter.cc (11664:2365e9e396f7)
1/*
2 * Copyright (c) 2011 Advanced Micro Devices, Inc.
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;

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

27 */
28
29#include "mem/ruby/network/BasicRouter.hh"
30
31BasicRouter::BasicRouter(const Params *p)
32 : ClockedObject(p)
33{
34 m_id = p->router_id;
1/*
2 * Copyright (c) 2011 Advanced Micro Devices, Inc.
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;

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

27 */
28
29#include "mem/ruby/network/BasicRouter.hh"
30
31BasicRouter::BasicRouter(const Params *p)
32 : ClockedObject(p)
33{
34 m_id = p->router_id;
35 m_latency = p->latency;
35}
36
37void
38BasicRouter::init()
39{
40}
41
42void
43BasicRouter::print(std::ostream& out) const
44{
45 out << name();
46}
47
48BasicRouter *
49BasicRouterParams::create()
50{
51 return new BasicRouter(this);
52}
36}
37
38void
39BasicRouter::init()
40{
41}
42
43void
44BasicRouter::print(std::ostream& out) const
45{
46 out << name();
47}
48
49BasicRouter *
50BasicRouterParams::create()
51{
52 return new BasicRouter(this);
53}