Deleted Added
sdiff udiff text old ( 12181:2150eff234c1 ) new ( 12182:acde8d31d970 )
full compact
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;

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

43class Statistics : public Serializable
44{
45 protected:
46 std::string myname;
47
48 protected:
49 Stats::Scalar _arm;
50 Stats::Scalar _quiesce;
51
52 public:
53 virtual ~Statistics() {}
54
55 const std::string name() const { return myname; }
56 void regStats(const std::string &name);
57
58 public:
59 void arm() { _arm++; }
60 void quiesce() { _quiesce++; }
61
62 public:
63 void serialize(CheckpointOut &cp) const override {}
64 void unserialize(CheckpointIn &cp) override {}
65};
66
67} // namespace Kernel
68
69#endif // __KERNEL_STATS_HH__