This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
Re: [PATCH] Invoke _dl_arch_map_object if defined
- From: Roland McGrath <roland at hack dot frob dot com>
- To: Chris Metcalf <cmetcalf at tilera dot com>
- Cc: <libc-alpha at sourceware dot org>
- Date: Mon, 29 Oct 2012 16:22:00 -0700 (PDT)
- Subject: Re: [PATCH] Invoke _dl_arch_map_object if defined
- References: <201210292254.q9TMsRVC031775@farm-0002.internal.tilera.com>
It's odd to use a macro with a name that looks like a global function,
where it's a macro-specific interface by dint of using #ifdef. It would be
more normal style to do:
#ifdef DL_AFTER_LOAD
DL_AFTER_LOAD (l);
#endif
Also, remember space before paren.