Deleted Added
sdiff udiff text old ( 5764:f07df23e1fc8 ) new ( 5875:d82be3235ab4 )
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;

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

419 int
420 threadId() const
421 {
422 assert(flags.isSet(VALID_THREAD_ID));
423 return _threadId;
424 }
425
426 /** Accessor function for pc.*/
427 Addr
428 getPC() const
429 {
430 assert(flags.isSet(VALID_PC));
431 return pc;
432 }
433
434 /** Accessor Function to Check Cacheability. */

--- 26 unchanged lines hidden ---