kernel_stats.hh (5254:c555f8b07345) kernel_stats.hh (6378:4a2ff62c3b4f)
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;

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

27 *
28 * Authors: Lisa Hsu
29 * Nathan Binkert
30 */
31
32#ifndef __ARCH_MIPS_KERNEL_STATS_HH__
33#define __ARCH_MIPS_KERNEL_STATS_HH__
34
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;

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

27 *
28 * Authors: Lisa Hsu
29 * Nathan Binkert
30 */
31
32#ifndef __ARCH_MIPS_KERNEL_STATS_HH__
33#define __ARCH_MIPS_KERNEL_STATS_HH__
34
35#include <map>
36#include <stack>
37#include <string>
38#include <vector>
39
40#include "kern/kernel_stats.hh"
41
42namespace MipsISA {
43namespace Kernel {
44
45enum cpu_mode { kernel, user, idle, cpu_mode_num };
46extern const char *modestr[];
47

--- 12 unchanged lines hidden ---
35#include "kern/kernel_stats.hh"
36
37namespace MipsISA {
38namespace Kernel {
39
40enum cpu_mode { kernel, user, idle, cpu_mode_num };
41extern const char *modestr[];
42

--- 12 unchanged lines hidden ---