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] remove nested functions from elf/dl-deps.c


> +static inline
> +void preload (struct link_map *map, struct list *known, unsigned int *nlist)

The return type goes on the first line.  The function name always starts
its line.

It's general policy not to use the 'inline' keyword for static functions in
a .c file.  Unless there is a strong known reason, just let the compiler
decide about inlining.  (This is a relatively recent policy, so you might
find counterexamples in the code.)

When a function has some parameters that are the "context" and some that
are the specific parameters for the specific call, the style I prefer (and
have used throughout the codebase) is to put all the "context" ones first.

> +{
> +  known[*nlist].done = 0;
> +  known[*nlist].map = map;
> +  known[*nlist].next = &known[*nlist + 1];
> +
> +  ++(*nlist);

Drop superfluous parens.


Thanks,
Roland


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