Marin Ramesa, le Fri 15 Nov 2013 19:39:20 +0100, a écrit : > MACH_INLINE is already defined where needed. Inline functions from seg.h and > tss.h get compiled when included from other files, therefore seg.c serves no > real purpose. I think it's safe to remove.
It does serve purpose: the inline is an extern inline. It means the compiler is allowed not to inline, and instead emit a reference to an external function, which is provided by seg.c, precisely. Samuel