mirror of git://sourceware.org/git/glibc.git
Update.
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.
This commit is contained in:
parent
6cf26f4168
commit
1e49399dbe
|
|
@ -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>
|
2003-01-28 Martin Schwidefsky <schwidefsky@de.ibm.com>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/s390/s390-32/clone.S: Reorder additional
|
* sysdeps/unix/sysv/linux/s390/s390-32/clone.S: Reorder additional
|
||||||
|
|
|
||||||
|
|
@ -19,12 +19,14 @@
|
||||||
|
|
||||||
#include <fenv.h>
|
#include <fenv.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
#include <sysdep.h>
|
||||||
|
#include <sys/syscall.h>
|
||||||
#include <sys/prctl.h>
|
#include <sys/prctl.h>
|
||||||
|
|
||||||
const fenv_t *
|
const fenv_t *
|
||||||
__fe_nomask_env (void)
|
__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;
|
return FE_ENABLED_ENV;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue