stat_control.hh (2665:a124942bacb8) stat_control.hh (3125:febd811bccc6)
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 */
30
31#ifndef __SIM_STAT_CONTROL_HH__
32#define __SIM_STAT_CONTROL_HH__
33
34#include <fstream>
35#include <list>
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 */
30
31#ifndef __SIM_STAT_CONTROL_HH__
32#define __SIM_STAT_CONTROL_HH__
33
34#include <fstream>
35#include <list>
36
37class EventQueue;
38
37namespace Stats {
38
39enum {
40 Reset = 0x1,
41 Dump = 0x2
42};
43
44class Output;
45extern std::list<Output *> OutputList;
46
47void DumpNow();
39namespace Stats {
40
41enum {
42 Reset = 0x1,
43 Dump = 0x2
44};
45
46class Output;
47extern std::list<Output *> OutputList;
48
49void DumpNow();
48void SetupEvent(int flags, Tick when, Tick repeat = 0);
50void SetupEvent(int flags, Tick when, Tick repeat = 0, EventQueue *queue = NULL);
49
50void InitSimStats();
51
52/* namespace Stats */ }
53
54#endif // __SIM_STAT_CONTROL_HH__
51
52void InitSimStats();
53
54/* namespace Stats */ }
55
56#endif // __SIM_STAT_CONTROL_HH__