]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
turbostat: Clean up error handling; disambiguate error messages; use err and errx
authorJosh Triplett <josh@joshtriplett.org>
Wed, 21 Aug 2013 00:20:18 +0000 (17:20 -0700)
committerLen Brown <len.brown@intel.com>
Sun, 19 Jan 2014 03:34:10 +0000 (22:34 -0500)
commitb2c95d90a799c9885661d431034b7ca733cc2660
tree4ff18cce19b0175de18b0dc21649fe994127e927
parent57a42a34d126f2fe5d1f2f120c5f7a31ec65cd31
turbostat: Clean up error handling; disambiguate error messages; use err and errx

Most of turbostat's error handling consists of printing an error (often
including an errno) and exiting.  Since perror doesn't support a format
string, those error messages are often ambiguous, such as just showing a
file path, which doesn't uniquely identify which call failed.

turbostat already uses _GNU_SOURCE, so switch to the err and errx
functions from err.h, which take a format string.

Signed-off-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Len Brown <len.brown@intel.com>
tools/power/x86/turbostat/turbostat.c