port.cc (4190:5069dfa3d62e) port.cc (4321:6f8b597ab244)
1/*
2 * Copyright (c) 2002-2005 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;

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

46 peer = port;
47}
48
49void
50Port::removeConn()
51{
52 if (peer->getOwner())
53 peer->getOwner()->deletePortRefs(peer);
1/*
2 * Copyright (c) 2002-2005 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;

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

46 peer = port;
47}
48
49void
50Port::removeConn()
51{
52 if (peer->getOwner())
53 peer->getOwner()->deletePortRefs(peer);
54 delete peer;
55 peer = NULL;
56}
57
58void
59Port::blobHelper(Addr addr, uint8_t *p, int size, MemCmd cmd)
60{
61 Request req;
62 Packet pkt(&req, cmd, Packet::Broadcast);

--- 34 unchanged lines hidden ---
54 peer = NULL;
55}
56
57void
58Port::blobHelper(Addr addr, uint8_t *p, int size, MemCmd cmd)
59{
60 Request req;
61 Packet pkt(&req, cmd, Packet::Broadcast);

--- 34 unchanged lines hidden ---