base.cc (5338:e75d02a09806) base.cc (5606:6da7a58b0bc8)
1/*
2 * Copyright (c) 2003-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;

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

117 DPRINTF(Cache, "Cache Unblocking\n");
118 blocked = false;
119 if (mustSendRetry)
120 {
121 DPRINTF(Cache, "Cache Sending Retry\n");
122 mustSendRetry = false;
123 SendRetryEvent *ev = new SendRetryEvent(this, true);
124 // @TODO: need to find a better time (next bus cycle?)
1/*
2 * Copyright (c) 2003-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;

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

117 DPRINTF(Cache, "Cache Unblocking\n");
118 blocked = false;
119 if (mustSendRetry)
120 {
121 DPRINTF(Cache, "Cache Sending Retry\n");
122 mustSendRetry = false;
123 SendRetryEvent *ev = new SendRetryEvent(this, true);
124 // @TODO: need to find a better time (next bus cycle?)
125 ev->schedule(curTick + 1);
125 schedule(ev, curTick + 1);
126 }
127}
128
129
130void
131BaseCache::init()
132{
133 if (!cpuSidePort || !memSidePort)

--- 505 unchanged lines hidden ---
126 }
127}
128
129
130void
131BaseCache::init()
132{
133 if (!cpuSidePort || !memSidePort)

--- 505 unchanged lines hidden ---