Blame ChangeLogP532.txt

Packit 577717
2014-06-30  
Packit 577717
Packit 577717
  * 511d05bc man/man1/papi_avail.1 man/man1/papi_clockres.1
Packit 577717
  man/man1/papi_command_line.1...: Regenerate man pages for a pending 5.3.2
Packit 577717
  release
Packit 577717
Packit 577717
  * a07adc91 doc/Doxyfile-common papi.spec src/Makefile.in...: Bump version
Packit 577717
  number for a 5.3.2 release
Packit 577717
Packit 577717
2014-06-27  
Packit 577717
Packit 577717
  * 43070347 src/components/coretemp/linux-coretemp.c
Packit 577717
  src/components/micpower/linux-micpower.c src/components/net/linux-net.c: Fix
Packit 577717
  a warning in component initialization  A copy/paste perpetuated a multiple
Packit 577717
  definition of available_domains
Packit 577717
Packit 577717
2014-06-24  
Packit 577717
Packit 577717
  * ea216f5a src/run_tests.sh src/run_tests_exclude.txt
Packit 577717
  src/run_tests_exclude_cuda.txt: Fix excluded files for run_tests  Gary Mohr
Packit 577717
  pointed out that in a Makefile refactor we neglected to update the tests
Packit 577717
  eclude creteria -------------------------------- It turns out that you guys
Packit 577717
  have made changes in the way the tests are built which have introduced errors
Packit 577717
  when running the scripts. The script attempted to automatically remove the
Packit 577717
  makefiles from the list of files it would execute but your build changes
Packit 577717
  broke the makefiles up into several files and renamed all of them. So the
Packit 577717
  script was trying to execute them.  I decided the most flexible way to handle
Packit 577717
  this is to remove the code from the script that looks for makefiles and just
Packit 577717
  add them to the exclude files used by the script. The script will not execute
Packit 577717
  any file listed in the exclude file.  The attached patch implements these
Packit 577717
  changes so the script runs correctly with the current papi build files.  Gary
Packit 577717
  --------------------------------
Packit 577717
Packit 577717
2014-05-16  
Packit 577717
Packit 577717
  * aacf9628 man/man3/PAPI_enum_cmp_event.3 man/man3/PAPI_enum_event.3
Packit 577717
  man/man3/PAPI_get_overflow_event_index.3...: Printf formatting change... 
Packit 577717
  Based upon a patch by Steve Kaufmann.  I took the liberty of removing all the
Packit 577717
  leading "0x" as part of formatting output strings. Now the "%#" syntax is
Packit 577717
  used to print out hexidecimal values with a leading "0x" (letting the printf
Packit 577717
  function do the work).
Packit 577717
Packit 577717
2014-03-26  
Packit 577717
Packit 577717
  * 0c93f0a1 src/components/nvml/linux-nvml.c src/components/nvml/linux-nvml.h:
Packit 577717
  Add units to NVML component  Thanks to Brian Lemke at Bull for the patch.
Packit 577717
Packit 577717
2014-02-26  
Packit 577717
Packit 577717
  * 2c79fab8 src/configure src/configure.in: configure: respect
Packit 577717
  --with-walltimer and virtualtimer  For whatever reason configure would not
Packit 577717
  check for the --with-walltimer argument if we had already determined one (See
Packit 577717
  BG/P and CLE sections also --with-mic option).  This is not desirable, kill
Packit 577717
  this behaviour.
Packit 577717
Packit 577717
2014-01-30  
Packit 577717
Packit 577717
  * 284f25c2 src/components/lustre/linux-lustre.c
Packit 577717
  src/components/net/linux-net.c: Use correct specification for signed and
Packit 577717
  unsigned int  A run of cppcheck showed that some mismatches between the
Packit 577717
  specfications for sscanf and the variables being used to store the values. 
Packit 577717
  This corrects those minor issues.
Packit 577717
Packit 577717
2014-02-04  
Packit 577717
Packit 577717
  * 291bad11 src/components/coretemp/linux-coretemp.c
Packit 577717
  src/components/coretemp_freebsd/coretemp_freebsd.c
Packit 577717
  src/components/host_micpower/linux-host_micpower.c...: Update the
Packit 577717
  domain/granularity of many components  Many PAPI components only report
Packit 577717
  system wide events, here we attempt to match up entries in the .cmp_info
Packit 577717
  struct with reality by only allowing PAPI_GRAN_SYS and PAPI_DOM_ALL.
Packit 577717
Packit 577717
2013-12-30  
Packit 577717
Packit 577717
  * eeefec5c src/ctests/attach2.c src/ctests/attach3.c: ctests/attach[2,3]: Fix
Packit 577717
  ptrace call for BSD  "The  SunOS  man page describes ptrace() as "unique and
Packit 577717
  arcane", which it is."
Packit 577717
Packit 577717
  * 27d416c8 src/configure src/configure.in: Configure.in: Remove Bash-isms
Packit 577717
  from comp selection  Part of a patch set by Gleb Smirnoff
Packit 577717
Packit 577717
  * 52f8979f src/configure src/configure.in: Configure.in: Correctly detect
Packit 577717
  FreeBSD OS version  The script incorrectly parsed "FreeBSD 10" as "FreeBSD
Packit 577717
  1". Part of a series of patches by Gleb Smirnoff