Re: [PATCH 1/3] ipc/sem.c: remove sem_base, embed struct sem

From: Christoph Hellwig
Date: Tue May 16 2017 - 01:46:17 EST


> + struct sem sems[0];

I can't contribute much to the code itself, but [0] is an old
GCC extension, for modern code sems[] should do the same things
but is standard C.