This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
Re: [PATCH v2] [BZ #15897] dlfcn: do not mark dlopen/dlclose as leaf functions
- From: Alexander Monakov <amonakov at ispras dot ru>
- To: Mike Frysinger <vapier at gentoo dot org>
- Cc: libc-alpha at sourceware dot org
- Date: Mon, 2 Sep 2013 12:02:12 +0400 (MSK)
- Subject: Re: [PATCH v2] [BZ #15897] dlfcn: do not mark dlopen/dlclose as leaf functions
- Authentication-results: sourceware.org; auth=none
- References: <1377493203-1498-1-git-send-email-vapier at gentoo dot org> <1377580215-28629-1-git-send-email-vapier at gentoo dot org> <20130827165158 dot 58D6D2C0B2 at topped-with-meat dot com> <201308271547 dot 42813 dot vapier at gentoo dot org>
Hi,
dlsym needs such treatment as well: it calls calloc internally, which may be
overridden in the same TU (or a malloc hook could be installed).
Alexander