trace.cc (4046:ef34b290091e) trace.cc (4074:f2c4afa8cd46)
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;

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

42#include "base/trace.hh"
43#include "base/varargs.hh"
44
45using namespace std;
46
47namespace Trace {
48const string DefaultName("global");
49FlagVec flags(NumFlags, false);
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;

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

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

--- 155 unchanged lines hidden ---
51
52//
53// This variable holds the output stream for debug information. Other
54// than setting up/redirecting this stream, do *NOT* reference this
55// directly; use DebugOut() (see below) to access this stream for
56// output.
57//
58ostream *dprintf_stream = &cerr;

--- 155 unchanged lines hidden ---