1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 22:22:11 +02:00

Forgot copyright boilerplate

This commit is contained in:
John Cortell 2011-05-12 16:15:51 +00:00
parent c3d3296b60
commit a48a40919f

View file

@ -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;
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
* utility for tracing multithreaded code, as each trace statement prints out
* the thread and the time (in millisecond granularity). For performance
* reasons, trace statements should explicitly check a trace flag before calling
* into a DebugTrace method. E.g.,
* utility for troubleshooting race condition bugs. Each trace statement
* contains the thread and the time (in millisecond granularity). The trace goes
* to the file: {workspace}/.metadata/trace.log
*
* <p>
* For performance reasons, trace statements should explicitly check a trace
* flag before calling into a DebugTrace method. E.g.,
*
* <p>
* <code>