Network.cc (9863:9483739f83ee) Network.cc (10076:f81d94b53661)
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;

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

93 case MessageSizeType_ResponseL2hit_Data:
94 case MessageSizeType_Writeback_Data:
95 return m_data_msg_size;
96 default:
97 panic("Invalid range for type MessageSizeType");
98 break;
99 }
100}
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;

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

93 case MessageSizeType_ResponseL2hit_Data:
94 case MessageSizeType_Writeback_Data:
95 return m_data_msg_size;
96 default:
97 panic("Invalid range for type MessageSizeType");
98 break;
99 }
100}
101
102const std::vector<Throttle*>*
103Network::getThrottles(NodeID id) const
104{
105 return NULL;
106}