cpu.cc (5702:bf84e2fa05f7) cpu.cc (5704:98224505352a)
1/*
2 * Copyright (c) 2004-2006 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;

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

890 //do waitlist
891 cpuWaitList.push_back(tid);
892 }
893}
894
895#if FULL_SYSTEM
896template <class Impl>
897void
1/*
2 * Copyright (c) 2004-2006 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;

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

890 //do waitlist
891 cpuWaitList.push_back(tid);
892 }
893}
894
895#if FULL_SYSTEM
896template <class Impl>
897void
898FullO3CPU<Impl>::post_interrupt(int int_num, int index)
898FullO3CPU<Impl>::postInterrupt(int int_num, int index)
899{
899{
900 BaseCPU::post_interrupt(int_num, index);
900 BaseCPU::postInterrupt(int_num, index);
901
902 if (this->thread[0]->status() == ThreadContext::Suspended) {
903 DPRINTF(IPI,"Suspended Processor awoke\n");
904 this->threadContexts[0]->activate();
905 }
906}
907
908template <class Impl>

--- 835 unchanged lines hidden ---
901
902 if (this->thread[0]->status() == ThreadContext::Suspended) {
903 DPRINTF(IPI,"Suspended Processor awoke\n");
904 this->threadContexts[0]->activate();
905 }
906}
907
908template <class Impl>

--- 835 unchanged lines hidden ---