mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Forgot copyright boilerplate
This commit is contained in:
parent
c3d3296b60
commit
a48a40919f
1 changed files with 17 additions and 4 deletions
|
@ -1,3 +1,13 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 201 Freescale Semiconductor and others.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Freescale Semiconductor - Initial API and implementation
|
||||||
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.debug.internal.core;
|
package org.eclipse.cdt.debug.internal.core;
|
||||||
|
|
||||||
import org.eclipse.cdt.debug.core.CDebugCorePlugin;
|
import org.eclipse.cdt.debug.core.CDebugCorePlugin;
|
||||||
|
@ -11,10 +21,13 @@ import org.osgi.util.tracker.ServiceTracker;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class for getting a singleton instance of DebugTrace, an extremely useful
|
* Class for getting a singleton instance of DebugTrace, an extremely useful
|
||||||
* utility for tracing multithreaded code, as each trace statement prints out
|
* utility for troubleshooting race condition bugs. Each trace statement
|
||||||
* the thread and the time (in millisecond granularity). For performance
|
* contains the thread and the time (in millisecond granularity). The trace goes
|
||||||
* reasons, trace statements should explicitly check a trace flag before calling
|
* to the file: {workspace}/.metadata/trace.log
|
||||||
* into a DebugTrace method. E.g.,
|
*
|
||||||
|
* <p>
|
||||||
|
* For performance reasons, trace statements should explicitly check a trace
|
||||||
|
* flag before calling into a DebugTrace method. E.g.,
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* <code>
|
* <code>
|
||||||
|
|
Loading…
Add table
Reference in a new issue