summaryrefslogtreecommitdiffstats
path: root/runtime/counter.c
Commit message (Collapse)AuthorAgeFilesLines
* Use 'static' as much as possibleJosh Stone2009-01-281-5/+5
| | | | | | | | | | This change just inserts 'static' on runtime, tapset, and generated C functions and globals, so the compiler can do a better job of optimizing. My tests with small scripts show ~10% reduction in compile time and ~20% reduction in module size. Larger scripts may show less benefit, but I expect purely positive results.
* Fix the conflicted for_each_cpu macro with 2.6.28.Wenji Huang2008-11-171-2/+2
|
* 2008-01-28 Martin Hunt <hunt@redhat.com>hunt2008-01-281-2/+2
| | | | | | | | * alloc.c: Use DEFINE_SPINLOCK. * counter.c: Ditto. * pmap-gen.c: Ditto. * print_new.c: Ditto. * stat.c: Ditto.
* Add support for memory allocation tracking.hunt2008-01-151-2/+2
|
* 2005-10-31 Martin Hunt <hunt@redhat.com>hunt2005-10-311-1/+11
| | | | * ALL: Cleanup copyrights.
* 2005-06-18 Martin Hunt <hunt@redhat.com>hunt2005-06-181-0/+136
* counter.c: New file. Counter aggregations. * stat.c: New file. Stat aggregations. * stat.h: Header file for stats. * map-int.c: New file. Support for int64 values. * map-stat.c: New file. Support for stat values. * map-str.c: New file. Support for string values. * map-values.c: Now just includes the necessary map-*.c files. * stat-common.c: New file. Stats stuff common to Stats and maps containing stats. * Doxyfile: Bumped version to 0.6. * README: Renamed README.doc and reorganized.