mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 12:30:06 +00:00
* dlfcn/dlopen.c (dlopen_doit): Allow __RTLD_SPROF flag.
Patch by Olivier Fourdan <ofourdan@redhat.com>.
This commit is contained in:
parent
5efd3a3bf3
commit
0a26fc4d99
@ -1,3 +1,8 @@
|
||||
2008-09-16 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* dlfcn/dlopen.c (dlopen_doit): Allow __RTLD_SPROF flag.
|
||||
Patch by Olivier Fourdan <ofourdan@redhat.com>.
|
||||
|
||||
2008-09-15 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* sunrpc/rpc/svc.h: Declare svcfd_create.
|
||||
|
4
NEWS
4
NEWS
@ -1,4 +1,4 @@
|
||||
GNU C Library NEWS -- history of user-visible changes. 2008-8-2
|
||||
GNU C Library NEWS -- history of user-visible changes. 2008-9-16
|
||||
Copyright (C) 1992-2007, 2008 Free Software Foundation, Inc.
|
||||
See the end for copying conditions.
|
||||
|
||||
@ -38,6 +38,8 @@ Version 2.9
|
||||
|
||||
* Sorting rules for some Indian languages (Kannada, Gurumukhi, Telugu)
|
||||
Implemented by Pravin Satpute.
|
||||
|
||||
* New locales: sd_IN, sd_IN@devanagari, ks_IN@devanagari, ht_HT, en_AG, nl_AW.
|
||||
|
||||
Version 2.8
|
||||
|
||||
|
@ -60,7 +60,8 @@ dlopen_doit (void *a)
|
||||
struct dlopen_args *args = (struct dlopen_args *) a;
|
||||
|
||||
if (args->mode & ~(RTLD_BINDING_MASK | RTLD_NOLOAD | RTLD_DEEPBIND
|
||||
| RTLD_GLOBAL | RTLD_LOCAL | RTLD_NODELETE))
|
||||
| RTLD_GLOBAL | RTLD_LOCAL | RTLD_NODELETE
|
||||
| __RTLD_SPROF))
|
||||
GLRO(dl_signal_error) (0, NULL, NULL, _("invalid mode parameter"));
|
||||
|
||||
args->new = GLRO(dl_open) (args->file ?: "", args->mode | __RTLD_DLOPEN,
|
||||
|
Loading…
Reference in New Issue
Block a user