]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 29 Jan 2003 03:14:29 +0000 (03:14 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 29 Jan 2003 03:14:29 +0000 (03:14 +0000)
2003-01-28  Steven Munroe  <sjmunroe@us.ibm.com>

* sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c
(__fe_nomask_env): Change __prctl call to INLINE_SYSCALL.

ChangeLog
sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c

index f5a8699e6c8ab62bba68fd0229f5a1a7e535c778..a8b7f68d1d21a6cbbb65e98d37f86e6080f4ec4c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-01-28  Steven Munroe  <sjmunroe@us.ibm.com>
+
+       * sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c
+       (__fe_nomask_env): Change __prctl call to INLINE_SYSCALL.
+
 2003-01-28  Martin Schwidefsky  <schwidefsky@de.ibm.com>
 
        * sysdeps/unix/sysv/linux/s390/s390-32/clone.S: Reorder additional
index 7e5cb5d2f46a92eb3d520ab6e7ffa783458ff3dd..6343c54b2dbf2409fcff395288db70aa69f2538c 100644 (file)
 
 #include <fenv.h>
 #include <errno.h>
+#include <sysdep.h>
+#include <sys/syscall.h>
 #include <sys/prctl.h>
 
 const fenv_t *
 __fe_nomask_env (void)
 {
-  __prctl (PR_SET_FPEXC, PR_FP_EXC_PRECISE);
+  INLINE_SYSCALL (prctl, 2, PR_SET_FPEXC, PR_FP_EXC_PRECISE);
 
   return FE_ENABLED_ENV;
 }