This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Invoke _dl_arch_map_object if defined


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.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]