summaryrefslogtreecommitdiffstats
path: root/src/metrics.cc
Commit message (Collapse)AuthorAgeFilesLines
* Fix compilation on VS2013Scott Graham2013-10-181-0/+2
|
* fix error and prevent warning in GetTimeMillis()Claus Klein2012-07-271-1/+1
|
* print edges per secondPeter Kuemmel2012-07-151-0/+10
| | | | | | | | | | | prints the rate of finished edges per second to the console, for instance with NINJA_STATUS="[%s/%t %o(%c)/s] ": [132/1922 16.1(14)/s] 16.1 is the average for all processed files (here 132 since start) 14 is the average of the last n files while n is the number specifies by -j (or its default)
* Switch the order of total and avg columns in -d stats output.Nico Weber2012-04-171-3/+3
|
* windows: use _WIN32 define everywhereEvan Martin2012-01-221-2/+2
| | | | Rather than mixing use of WIN32 and _WIN32.
* dynamic metrics report widthEvan Martin2012-01-061-3/+10
|
* add a '-d stats' flag for detailed timingsEvan Martin2012-01-051-0/+108
1) Add a system for recording detailed timing info of functions. 2) Add a -d flag for requesting debug info at runtime, with the above as the first user.