add some comments etc documenting various not-implemented things

Change-Id: I1103b65006e8330260bfe1202bdb64eb84d3fccc
This commit is contained in:
Brian Silverman
2015-01-24 18:02:06 -05:00
committed by James Kuszmaul
parent 880eae1424
commit 4cac5a957b
6 changed files with 31 additions and 8 deletions

View File

@@ -121,6 +121,9 @@ void deleteMultiWait(MULTIWAIT_ID sem) {
delete sem;
}
/**
* @param timeout Not implemented.
*/
int8_t takeMultiWait(MULTIWAIT_ID sem, MUTEX_ID m, int32_t timeout) {
takeMutex(m);
int8_t val = pthread_cond_wait(sem, m);