Yes, SEM_post and SEM_postBinary are the same functions. However, the SEM_pend and SEM_pendBinary are different though. If the semaphore is available in SEM_pendBinary (note available means the count is non-zero), the count is set to zero (SEM_pend decrements). So if you use the S...
Yes, SEM_post and SEM_postBinary are the same functions. However, the SEM_pend and SEM_pendBinary are different though. If the semaphore is available in SEM_pendBinary (note available means the count is non-zero), the count is set to zero (SEM_pend decrements). So if you use the S...