Changeset 103458 in vbox for trunk/src/libs/xpcom18a4/nsprpub/pr
- Timestamp:
- Feb 19, 2024 5:00:08 PM (15 months ago)
- svn:sync-xref-src-repo-rev:
- 161792
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/nsprpub/pr/src/pthreads/ptsynch.c
r102470 r103458 410 410 } /* PR_WaitCondVar */ 411 411 412 static PRStatus PR_NotifyCondVar(PRCondVar *cvar)413 {414 Assert(cvar != NULL);415 pt_PostNotifyToCvar(cvar, PR_FALSE);416 return PR_SUCCESS;417 } /* PR_NotifyCondVar */418 419 static PRStatus PR_NotifyAllCondVar(PRCondVar *cvar)420 {421 Assert(cvar != NULL);422 pt_PostNotifyToCvar(cvar, PR_TRUE);423 return PR_SUCCESS;424 } /* PR_NotifyAllCondVar */425 426 412 /**************************************************************/ 427 413 /**************************************************************/
Note:
See TracChangeset
for help on using the changeset viewer.