mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Name space hygeine for madvise.
This commit is contained in:
15
ChangeLog
15
ChangeLog
@ -1,3 +1,18 @@
|
|||||||
|
2012-10-04 Roland McGrath <roland@hack.frob.com>
|
||||||
|
|
||||||
|
* misc/Versions (GLIBC_PRIVATE): New set, add __madvise.
|
||||||
|
* misc/madvise.c (madvise): Renamed to __madvise.
|
||||||
|
Make madvise a weak alias.
|
||||||
|
* include/sys/mman.h: Declare __madvise.
|
||||||
|
Replace libc_hidden_proto (madvise) with libc_hidden_proto (__madvise).
|
||||||
|
* sysdeps/unix/syscalls.list
|
||||||
|
(madvise): Make __madvise the strong name, and madvise a weak alias.
|
||||||
|
* sysdeps/unix/sysv/linux/syscalls.list
|
||||||
|
(madvise, mmap): Remove redundant entries.
|
||||||
|
* malloc/arena.c (shrink_heap): Use __madvise, not madvise.
|
||||||
|
* malloc/malloc.c (mtrim): Likewise.
|
||||||
|
* sysdeps/mach/hurd/malloc-machine.h (madvise): Renamed to __madvise.
|
||||||
|
|
||||||
2012-10-03 Roland McGrath <roland@hack.frob.com>
|
2012-10-03 Roland McGrath <roland@hack.frob.com>
|
||||||
|
|
||||||
* sysdeps/mach/hurd/dl-cache.c: File removed.
|
* sysdeps/mach/hurd/dl-cache.c: File removed.
|
||||||
|
@ -10,11 +10,12 @@ extern void *__mmap64 (void *__addr, size_t __len, int __prot,
|
|||||||
extern int __munmap (void *__addr, size_t __len);
|
extern int __munmap (void *__addr, size_t __len);
|
||||||
extern int __mprotect (void *__addr, size_t __len, int __prot);
|
extern int __mprotect (void *__addr, size_t __len, int __prot);
|
||||||
|
|
||||||
|
extern int __madvise (void *__addr, size_t __len, int __advice);
|
||||||
|
libc_hidden_proto (__madvise)
|
||||||
|
|
||||||
/* This one is Linux specific. */
|
/* This one is Linux specific. */
|
||||||
extern void *__mremap (void *__addr, size_t __old_len,
|
extern void *__mremap (void *__addr, size_t __old_len,
|
||||||
size_t __new_len, int __flags, ...);
|
size_t __new_len, int __flags, ...);
|
||||||
|
|
||||||
libc_hidden_proto (madvise);
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -634,7 +634,7 @@ shrink_heap(heap_info *h, long diff)
|
|||||||
h->mprotect_size = new_size;
|
h->mprotect_size = new_size;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
madvise ((char *)h + new_size, diff, MADV_DONTNEED);
|
__madvise ((char *)h + new_size, diff, MADV_DONTNEED);
|
||||||
/*fprintf(stderr, "shrink %p %08lx\n", h, new_size);*/
|
/*fprintf(stderr, "shrink %p %08lx\n", h, new_size);*/
|
||||||
|
|
||||||
h->size = new_size;
|
h->size = new_size;
|
||||||
|
@ -4450,7 +4450,7 @@ static int mtrim(mstate av, size_t pad)
|
|||||||
content. */
|
content. */
|
||||||
memset (paligned_mem, 0x89, size & ~psm1);
|
memset (paligned_mem, 0x89, size & ~psm1);
|
||||||
#endif
|
#endif
|
||||||
madvise (paligned_mem, size & ~psm1, MADV_DONTNEED);
|
__madvise (paligned_mem, size & ~psm1, MADV_DONTNEED);
|
||||||
|
|
||||||
result = 1;
|
result = 1;
|
||||||
}
|
}
|
||||||
|
@ -149,4 +149,7 @@ libc {
|
|||||||
GLIBC_2.16 {
|
GLIBC_2.16 {
|
||||||
__getauxval; getauxval;
|
__getauxval; getauxval;
|
||||||
}
|
}
|
||||||
|
GLIBC_PRIVATE {
|
||||||
|
__madvise;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
/* Copyright (C) 1994,1995,1996,1997,2000,2007 Free Software Foundation, Inc.
|
/* Advise system about intentions for a memory region. Stub version.
|
||||||
|
Copyright (C) 1994-2012 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -23,11 +24,13 @@
|
|||||||
for the region starting at ADDR and extending LEN bytes. */
|
for the region starting at ADDR and extending LEN bytes. */
|
||||||
|
|
||||||
int
|
int
|
||||||
madvise (__ptr_t addr, size_t len, int advice)
|
__madvise (void *addr, size_t len, int advice)
|
||||||
{
|
{
|
||||||
__set_errno (ENOSYS);
|
__set_errno (ENOSYS);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
libc_hidden_def (madvise)
|
libc_hidden_def (__madvise)
|
||||||
|
weak_alias (__madvise, madvise)
|
||||||
|
|
||||||
stub_warning (madvise)
|
stub_warning (madvise)
|
||||||
#include <stub-tag.h>
|
#include <stub-tag.h>
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2012-10-04 Roland McGrath <roland@hack.frob.com>
|
||||||
|
|
||||||
|
* pthread_create.c (start_thread): Use __madvise, not madvise.
|
||||||
|
|
||||||
2012-10-02 H.J. Lu <hongjiu.lu@intel.com>
|
2012-10-02 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
* sysdeps/i386/tls.h: Update copyright years.
|
* sysdeps/i386/tls.h: Update copyright years.
|
||||||
|
@ -399,7 +399,7 @@ start_thread (void *arg)
|
|||||||
#endif
|
#endif
|
||||||
assert (freesize < pd->stackblock_size);
|
assert (freesize < pd->stackblock_size);
|
||||||
if (freesize > PTHREAD_STACK_MIN)
|
if (freesize > PTHREAD_STACK_MIN)
|
||||||
madvise (pd->stackblock, freesize - PTHREAD_STACK_MIN, MADV_DONTNEED);
|
__madvise (pd->stackblock, freesize - PTHREAD_STACK_MIN, MADV_DONTNEED);
|
||||||
|
|
||||||
/* If the thread is detached free the TCB. */
|
/* If the thread is detached free the TCB. */
|
||||||
if (IS_DETACHED (pd))
|
if (IS_DETACHED (pd))
|
||||||
|
@ -66,8 +66,9 @@ __libc_tsd_define (static, void *, MALLOC) /* declaration/common definition */
|
|||||||
|
|
||||||
#include <sys/mman.h>
|
#include <sys/mman.h>
|
||||||
|
|
||||||
#undef madvise
|
#undef __madvise
|
||||||
#define madvise(addr, len, advice) ((void) (addr), (void) (len), (void) (advice))
|
#define __madvise(addr, len, advice) \
|
||||||
|
((void) (addr), (void) (len), (void) (advice))
|
||||||
|
|
||||||
#include <sysdeps/generic/malloc-machine.h>
|
#include <sysdeps/generic/malloc-machine.h>
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ kill - kill i:ii __kill kill
|
|||||||
link - link i:ss __link link
|
link - link i:ss __link link
|
||||||
listen - listen i:ii __listen listen
|
listen - listen i:ii __listen listen
|
||||||
lseek - lseek i:iii __libc_lseek __lseek lseek
|
lseek - lseek i:iii __libc_lseek __lseek lseek
|
||||||
madvise - madvise i:pii madvise
|
madvise - madvise i:pii __madvise madvise
|
||||||
mkdir - mkdir i:si __mkdir mkdir
|
mkdir - mkdir i:si __mkdir mkdir
|
||||||
mmap - mmap b:aniiii __mmap mmap
|
mmap - mmap b:aniiii __mmap mmap
|
||||||
mprotect - mprotect i:aii __mprotect mprotect
|
mprotect - mprotect i:aii __mprotect mprotect
|
||||||
|
@ -36,11 +36,9 @@ ioperm - ioperm i:iii ioperm
|
|||||||
iopl - iopl i:i iopl
|
iopl - iopl i:i iopl
|
||||||
klogctl EXTRA syslog i:isi klogctl
|
klogctl EXTRA syslog i:isi klogctl
|
||||||
lchown - lchown i:sii __lchown lchown
|
lchown - lchown i:sii __lchown lchown
|
||||||
madvise - madvise i:pii madvise
|
|
||||||
mincore - mincore i:anV mincore
|
mincore - mincore i:anV mincore
|
||||||
mlock - mlock i:bn mlock
|
mlock - mlock i:bn mlock
|
||||||
mlockall - mlockall i:i mlockall
|
mlockall - mlockall i:i mlockall
|
||||||
mmap - mmap b:aniiii __mmap mmap
|
|
||||||
mount EXTRA mount i:sssip __mount mount
|
mount EXTRA mount i:sssip __mount mount
|
||||||
mremap EXTRA mremap b:ainip __mremap mremap
|
mremap EXTRA mremap b:ainip __mremap mremap
|
||||||
munlock - munlock i:ai munlock
|
munlock - munlock i:ai munlock
|
||||||
|
Reference in New Issue
Block a user