mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-30 21:55:31 +02:00
Additional documentation
This commit is contained in:
parent
7e8ee4c873
commit
3b1dd88650
1 changed files with 10 additions and 1 deletions
|
@ -85,7 +85,16 @@ public class DsfPlugin extends Plugin {
|
|||
System.out.println(message);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Returns a relative timestamp in the form "<seconds>,<milliseconds>". Each
|
||||
* segment is zero-padded to three digits, ensuring a consistent length of
|
||||
* seven characters. The timestamp has no absolute meaning. It is merely the
|
||||
* elapsed time since January 1, 1970 UT truncated at 999 seconds. Do not
|
||||
* use this for production code, especially for mathematically determining
|
||||
* the relative time between two events, since the counter will flip to zero
|
||||
* roughly every 16 minutes.
|
||||
*/
|
||||
public static String getDebugTime() {
|
||||
StringBuilder traceBuilder = new StringBuilder();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue