Deleted Added
sdiff udiff text old ( 6739:48d10ba361c9 ) new ( 6899:f8057af86bf7 )
full compact
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;

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

189 setPhys(paddr, size, flags);
190 }
191
192 Request(Addr paddr, int size, Flags flags, Tick time)
193 {
194 setPhys(paddr, size, flags, time);
195 }
196
197 Request(int asid, Addr vaddr, int size, Flags flags, Addr pc,
198 int cid, ThreadID tid)
199 {
200 setVirt(asid, vaddr, size, flags, pc);
201 setThreadContext(cid, tid);
202 }
203
204 ~Request() {} // for FastAlloc

--- 268 unchanged lines hidden ---