summaryrefslogtreecommitdiffstats
path: root/lib/memtypes.awk
Commit message (Collapse)AuthorAgeFilesLines
* Add missing GPL headers, and copyright claims that certainly apply.Paul Jakma2014-09-191-1/+20
| | | | | | | | | | | | | * Fix (a subset of)? files with non-trivial code that are missing GPL headers. * A few copyright claims added which I am certain apply, but which I had missed out on the original commits. NB: Copyright claims are not exclusive and the addition of any copyright claim should not be read as implying a lack of any further claims, or denying the validity of any other claims. All those with claims of copyright over any portion of Quagga are welcome to submit them, ideally as patches to update copyright strings in files.
* [lib] fix gensub call in memtypes.awk to pass "g", not g.Paul Jakma2006-03-301-3/+3
| | | | | | 2006-03-27 Paul Jakma <paul.jakma@sun.com> * memtypes.awk: Fix gensub call, g should be a string..
* 2005-05-23 Paul Jakma <paul@dishone.st>paul2005-05-231-3/+3
| | | | | | * memtypes.awk: use character classes, which work correctly in all LC_COLLATE environments, unlike A-Z, which doesnt work in eg estonian collate order. Reported by Hasso.
* 2005-04-16 Paul Jakma <paul@dishone.st>paul2005-04-161-4/+32
| | | | | | | | | * memtypes.c: the comment about use of comments in the comments headers was causing comment within comment warnings from compiler * memtypes.awk: Add extensive comments on the file format for memtypes.c. tighten the pattern for the MTYPE matching action (suggestion from Andrew) and tighten which field we try the match on.
* 2005-04-15 Paul Jakma <paul@dishone.st>paul2005-04-151-0/+40
* memtypes.c: The new, unified location for memory type definitions. The memtype enum and declarations for memory_lists are built from this automatically and put into memtypes.h. * memtypes.awk: New script to generate memtypes.h from memtypes.c * memory.h: Finally, the enum can banished! * memory.c: Finally, the seperate mtype memory_list definitions can be banished! (log_memstats) Increase width of fields (show_memory_zebra_cmd) display zebra specific memory types. Increase width of fields. * Makefile.am: Add memtypes.{c,h}, add BUILT_SOURCES for memtypes.h Add a rule to build memtypes.h using memtypes.awk. Add memtypes.awk to EXTRA_DIST.