cpu.hh (3221:669a04468c0d) cpu.hh (3402:db60546818d0)
1/*
2 * Copyright (c) 2004-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;

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

615#if FULL_SYSTEM
616 /** Pointer to the system. */
617 System *system;
618
619 /** Pointer to physical memory. */
620 PhysicalMemory *physmem;
621#endif
622
1/*
2 * Copyright (c) 2004-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;

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

615#if FULL_SYSTEM
616 /** Pointer to the system. */
617 System *system;
618
619 /** Pointer to physical memory. */
620 PhysicalMemory *physmem;
621#endif
622
623 /** Pointer to memory. */
624 MemObject *mem;
625
626 /** Event to call process() on once draining has completed. */
627 Event *drainEvent;
628
629 /** Counter of how many stages have completed draining. */
630 int drainCount;
631
632 /** Pointers to all of the threads in the CPU. */
633 std::vector<Thread *> thread;

--- 44 unchanged lines hidden ---
623 /** Event to call process() on once draining has completed. */
624 Event *drainEvent;
625
626 /** Counter of how many stages have completed draining. */
627 int drainCount;
628
629 /** Pointers to all of the threads in the CPU. */
630 std::vector<Thread *> thread;

--- 44 unchanged lines hidden ---