Deleted Added
sdiff udiff text old ( 7944:1daf51f62013 ) new ( 7945:32758425de8c )
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;

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

104
105 public:
106 FetchTranslation(TimingSimpleCPU *_cpu)
107 : cpu(_cpu)
108 {}
109
110 void
111 markDelayed()
112 {}
113
114 void
115 finish(Fault fault, RequestPtr req, ThreadContext *tc,
116 BaseTLB::Mode mode)
117 {
118 cpu->sendFetch(fault, req, tc);
119 }
120 };

--- 187 unchanged lines hidden ---