Changeset 113 for trunk/src/helpers/semaphores.c
- Timestamp:
- Oct 23, 2001, 11:25:46 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/semaphores.c
r83 r113 231 231 ) 232 232 { 233 treeInit(&pMutex->ReaderThreadsTree );233 treeInit(&pMutex->ReaderThreadsTree, NULL); 234 234 } 235 235 } … … 281 281 ) 282 282 { 283 ULONG cItems = pMutex->cReaderThreads;283 LONG cItems = pMutex->cReaderThreads; 284 284 TREE **papNodes = treeBuildArray(pMutex->ReaderThreadsTree, 285 285 &cItems); … … 424 424 425 425 treeInsert(&pMutex->ReaderThreadsTree, 426 NULL, 426 427 (TREE*)pReader, 427 428 treeCompareKeys);
Note:
See TracChangeset
for help on using the changeset viewer.