According to the man pages for sem_wait, etc., POSIX semaphores are available in Linux 2.6 (with the right NTPL threading in glibc).<br><br>However, I have a program that compiles just fine but won't link because it can't find the library for the semaphore operations.<br>
<br>What am I missing?<br><br>I ran a find and grep through all the libc's on the system and they turned up nothing:<br><br>$ find /lib /usr/lib -name "*libc\.*" -print -exec nm {} 2>/dev/null \; | grep sem_<br>
<br>(no results)<br><br>Time is critical (yeah, I know...).<br><br>Thanks.<br><br>mhr<br><br>