Fix slowpow systemtap probe name.

- Correctly name the 240-bit slow path sytemtap probe slowpow_p10 for slowpow.
This commit is contained in:
Carlos O'Donell 2013-07-25 15:46:20 -04:00
parent 5a3b560f10
commit 37714d015a
2 changed files with 6 additions and 2 deletions

View File

@ -54,7 +54,7 @@ diff -rup c/sysdeps/ieee754/dbl-64/slowpow.c d/sysdeps/ieee754/dbl-64/slowpow.c
+ {
+ /* Track how often we get to the slow pow code plus
+ its input/output values. */
+ LIBC_PROBE (slowpow_p6, 4, &x, &y, &z, &res);
+ LIBC_PROBE (slowpow_p10, 4, &x, &y, &z, &res);
+ return res;
+ }

View File

@ -1,5 +1,6 @@
%define glibcsrcdir glibc-2.17-906-g8ab0740
%define glibcversion 2.17.90
%define glibcrelease 6%{?dist}
##############################################################################
# If run_glibc_tests is zero then tests are not run for the build.
# You must always set run_glibc_tests to one for production builds.
@ -69,7 +70,7 @@
Summary: The GNU libc libraries
Name: glibc
Version: %{glibcversion}
Release: 6%{?dist}
Release: %{glibcrelease}
# GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries.
# Things that are linked directly into dynamically linked programs
# and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional
@ -1530,6 +1531,9 @@ rm -f *.filelist*
%endif
%changelog
* Thu Jul 25 2013 Carlos O'Donell <carlos@redhat.com> - 2.17.90-7
- Correctly name the 240-bit slow path sytemtap probe slowpow_p10 for slowpow.
* Wed Jul 24 2013 Carlos O'Donell <carlos@redhat.com> - 2.17.90-6
- Add build requirement on static libstdc++ library to fix testsuite failures
for static C++ tests.