Deleted Added
sdiff udiff text old ( 4039:b910b61a52b9 ) new ( 4042:dbd98b2264ed )
full compact
1/*
2 * Copyright (c) 2001-2006 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;

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

41#include "base/str.hh"
42#include "base/varargs.hh"
43
44using namespace std;
45
46namespace Trace {
47const string DefaultName("global");
48FlagVec flags(NumFlags, false);
49bool enabled = true;
50
51//
52// This variable holds the output stream for debug information. Other
53// than setting up/redirecting this stream, do *NOT* reference this
54// directly; use DebugOut() (see below) to access this stream for
55// output.
56//
57ostream *dprintf_stream = &cerr;

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

219
220 ccprintf(os, "\n");
221
222 if (c < 16)
223 break;
224 }
225}
226} // namespace Trace