tport.cc (3352:8e940d22b2a8) tport.cc (3353:495bb0a961f2)
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;

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

30
31#include "mem/tport.hh"
32
33void
34SimpleTimingPort::recvFunctional(PacketPtr pkt)
35{
36 std::list<PacketPtr>::iterator i = transmitList.begin();
37 std::list<PacketPtr>::iterator end = transmitList.end();
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;

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

30
31#include "mem/tport.hh"
32
33void
34SimpleTimingPort::recvFunctional(PacketPtr pkt)
35{
36 std::list<PacketPtr>::iterator i = transmitList.begin();
37 std::list<PacketPtr>::iterator end = transmitList.end();
38 bool cont = true;
39
40 while (i != end) {
41 PacketPtr target = *i;
42 // If the target contains data, and it overlaps the
43 // probed request, need to update data
44 if (target->intersect(pkt))
45 fixPacket(pkt, target);
46

--- 88 unchanged lines hidden ---
38
39 while (i != end) {
40 PacketPtr target = *i;
41 // If the target contains data, and it overlaps the
42 // probed request, need to update data
43 if (target->intersect(pkt))
44 fixPacket(pkt, target);
45

--- 88 unchanged lines hidden ---