trace.hh (2665:a124942bacb8) trace.hh (3619:b3dab7606e0e)
1/*
2 * Copyright (c) 2001-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;

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

34
35#include <vector>
36
37#include "base/cprintf.hh"
38#include "base/match.hh"
39#include "sim/host.hh"
40#include "sim/root.hh"
41
1/*
2 * Copyright (c) 2001-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;

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

34
35#include <vector>
36
37#include "base/cprintf.hh"
38#include "base/match.hh"
39#include "sim/host.hh"
40#include "sim/root.hh"
41
42#ifndef TRACING_ON
43#ifndef NDEBUG
44#define TRACING_ON 1
45#else
46#define TRACING_ON 0
47#endif
48#endif
49
50#include "base/traceflags.hh"
51
52namespace Trace {
53
54 typedef std::vector<bool> FlagVec;
55
56 extern FlagVec flags;
57

--- 177 unchanged lines hidden ---
42#include "base/traceflags.hh"
43
44namespace Trace {
45
46 typedef std::vector<bool> FlagVec;
47
48 extern FlagVec flags;
49

--- 177 unchanged lines hidden ---