• R
    fix sem_open and sem_close to obey posix semantics · 81af5036
    Rich Felker 提交于
    multiple opens of the same named semaphore must return the same
    pointer, and only the last close can unmap it. thus the ugly global
    state keeping track of mappings. the maximum number of distinct named
    semaphores that can be opened is limited sufficiently small that the
    linear searches take trivial time, especially compared to the syscall
    overhead of these functions.
    81af5036
limits.h 3.0 KB