tport.cc (4022:c422464ca16e) tport.cc (4435:7da241055348)
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
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;

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

123 //Inserting at begining, reschedule
124 sendEvent.reschedule(time+curTick);
125 }
126 transmitList.insert(i,std::pair<Tick,PacketPtr>(time+curTick,pkt));
127 done = true;
128 }
129 i++;
130 }
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
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;

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

123 //Inserting at begining, reschedule
124 sendEvent.reschedule(time+curTick);
125 }
126 transmitList.insert(i,std::pair<Tick,PacketPtr>(time+curTick,pkt));
127 done = true;
128 }
129 i++;
130 }
131 assert(done);
131}
132
133void
134SimpleTimingPort::SendEvent::process()
135{
136 assert(port->transmitList.size());
137 assert(port->transmitList.front().first <= curTick);
138 if (port->Port::sendTiming(port->transmitList.front().second)) {

--- 26 unchanged lines hidden ---
132}
133
134void
135SimpleTimingPort::SendEvent::process()
136{
137 assert(port->transmitList.size());
138 assert(port->transmitList.front().first <= curTick);
139 if (port->Port::sendTiming(port->transmitList.front().second)) {

--- 26 unchanged lines hidden ---