Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
General further adoption of SPDX licensing ID tags.Mainly focus on files that use BSD 3-Clause license.The Software Package Data Exchange (SPDX) group provides a specificationto make it easier f
General further adoption of SPDX licensing ID tags.Mainly focus on files that use BSD 3-Clause license.The Software Package Data Exchange (SPDX) group provides a specificationto make it easier for automated tools to detect and summarize well knownopensource licenses. We are gradually adopting the specification, notingthat the tags are considered only advisory and do not, in any way,superceed or replace the license texts.Special thanks to Wind River for providing access to "The Duke ofHighlander" tool: an older (2014) run over FreeBSD tree was useful as astarting point.
show more ...
As python3 does not have raw_input(), convert it to input() when weare using python3.PR: 177214Reviewed by: gnnApproved by: sbruno (mentor)
Covert to python 3Approved by: cpercivaMFC after: 3 days
Add SOFT as a possible section to exclude from counter list.
Add a reasonable error message telling the caller to specify a programto be executed under hwpmc. If there is no program to run thenexit.
Remove UCP from the list of counters
Add options for program (-p) and to turn off waiting (-w) which is nowon by default.The default is to wait after each counter is tested. Since the promptwould go to stdout you won't see it if yo
Add options for program (-p) and to turn off waiting (-w) which is nowon by default.The default is to wait after each counter is tested. Since the promptwould go to stdout you won't see it if you're redirecting the outputof the executed sub-program to /dev/null, so just press return tocontinue or Ctrl-D to stop.
Add a rudimentary test to run through all the available counters on asystem and then execute a program with pmcstat in counting mode.The program will verify that all counters fire and that the cod
Add a rudimentary test to run through all the available counters on asystem and then execute a program with pmcstat in counting mode.The program will verify that all counters fire and that the code neitherpanics the system nor locks it up. This should be considered a first passconformance test for new sets of counters being added to hwpmc(4).