idle_event.cc (5254:c555f8b07345) idle_event.cc (5567:8fc3b004b0df)
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;

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

29 * Lisa Hsu
30 * Ali Saidi
31 */
32
33#include "arch/mips/idle_event.hh"
34#include "arch/mips/kernel_stats.hh"
35#include "cpu/thread_context.hh"
36
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;

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

29 * Lisa Hsu
30 * Ali Saidi
31 */
32
33#include "arch/mips/idle_event.hh"
34#include "arch/mips/kernel_stats.hh"
35#include "cpu/thread_context.hh"
36
37using namespace TheISA;
37using namespace MipsISA;
38
39void
40IdleStartEvent::process(ThreadContext *tc)
41{
42 fatal("Idle Start Event Not Defined for MIPS ISA ");
43
44 // if (tc->getKernelStats())
45 // tc->getKernelStats()->setIdleProcess(
46 // tc->readMiscRegNoEffect(MipsISA::IPR_PALtemp23), tc);
47 //remove();
48}
38
39void
40IdleStartEvent::process(ThreadContext *tc)
41{
42 fatal("Idle Start Event Not Defined for MIPS ISA ");
43
44 // if (tc->getKernelStats())
45 // tc->getKernelStats()->setIdleProcess(
46 // tc->readMiscRegNoEffect(MipsISA::IPR_PALtemp23), tc);
47 //remove();
48}