Paul Gofman (@gofman) commented about dlls/ntdll/unix/sync.c:
return idx % INPROC_SYNC_CACHE_BLOCK_SIZE;}
+static inline BOOL is_pseudo_handle( HANDLE handle )
Very minor and may be used elsewhere, but 'inline' qualifier is useless these days. same-file functions will be inlined either way if compiler decides so (surely will in this case). And in some case (not this one probably) when it would decide not to might be questionable if forcing inlining is useful (in some other specific case).