1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
* sysdeps/i386/fpu/e_fmodf.S: Revert last changes, keep using fprem.
	* sysdeps/i386/fpu/e_fmodl.c: Likewise.
	* sysdeps/i386/fpu/e_fmod.S: Likewise.
This commit is contained in:
Ulrich Drepper
2007-02-21 19:13:15 +00:00
parent 8889e7aa46
commit cdfd61e1ee
5 changed files with 12 additions and 7 deletions

View File

@ -21,18 +21,18 @@
int
posix_madvise (void *addr, size_t len, int advise)
posix_madvise (void *addr, size_t len, int advice)
{
/* We have one problem: the kernel's MADV_DONTNEED does not
correspond to POSIX's POSIX_MADV_DONTNEED. The former simply
discards changes made to the memory without writing it back to
disk, if this would be necessary. The POSIX behavior does not
allow this. There is no functionality mapping the POSIX behavior
so far so we ignore that advise for now. */
if (advise == POSIX_MADV_DONTNEED)
so far so we ignore that advice for now. */
if (advice == POSIX_MADV_DONTNEED)
return 0;
INTERNAL_SYSCALL_DECL (err);
int result = INTERNAL_SYSCALL (madvise, err, 3, addr, len, advise);
int result = INTERNAL_SYSCALL (madvise, err, 3, addr, len, advice);
return INTERNAL_SYSCALL_ERRNO (result, err);
}