Adding shared memory implementation

Joakim Tjernlund joakim.tjernlund at transmode.se
Fri Jan 16 12:05:15 UTC 2009


> +  /* skip opening slash */
> +  if (*name == '/')
> +    ++name;

I think skipping all leading '/' is better:
   for (; *name == '/'; ++name);

 Jocke


More information about the uClibc mailing list