From: Ulrich Drepper Date: Fri, 21 Aug 1998 22:32:37 +0000 (+0000) Subject: Update. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5775f0bbe8f0ff9c7f2c72b5a5e1d34f2a98c6ad;p=thirdparty%2Fglibc.git Update. --- diff --git a/FAQ b/FAQ index 3e60ff10299..588f09bd6f0 100644 --- a/FAQ +++ b/FAQ @@ -95,6 +95,8 @@ please let me know. still complains about redeclarations of types in the kernel headers. 3.7. Why don't signals interrupt system calls anymore? +3.14. The pow() inline function I get when including is broken. + I get segmentation faults when I run the program. 4. Miscellaneous @@ -874,6 +876,16 @@ If all you want is for one specific signal to cause system calls to fail and return EINTR (for example, to implement a timeout) you can do this with siginterrupt(). + +3.14. The pow() inline function I get when including is broken. + I get segmentation faults when I run the program. + +{UD} Nope, the implementation is correct. The problem is with egcs version +prior to 1.1. I.e., egcs 1.0 to 1.0.3 are all broken (at least on Intel). +If you have to use this compiler you must define __NO_MATH_INLINES before +including to prevent the inline functions from being used. egcs 1.1 +fixes the problem. I don't know about gcc 2.8 and 2.8.1. + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .