File: trace.cc

package info (click to toggle)
libosl 0.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 273,976 kB
  • sloc: cpp: 129,625; ansic: 7,145; ruby: 1,290; makefile: 558; perl: 413; sh: 35
file content (25 lines) | stat: -rw-r--r-- 496 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* trace.cc
 */
#include "osl/misc/trace.h"
#ifdef OSL_STATIC_INITIALIZER_TRACE
#  include <iostream>
#endif

osl::misc::StaticInitializeTracer::
StaticInitializeTracer(const char *
#ifdef OSL_STATIC_INITIALIZER_TRACE
		       filename
#endif
  )
{
#ifdef OSL_STATIC_INITIALIZER_TRACE
  std::cerr << "init " << filename << "\n";
#endif
}


/* ------------------------------------------------------------------------- */
// ;;; Local Variables:
// ;;; mode:c++
// ;;; c-basic-offset:2
// ;;; End: