Made Notify and Wait methods return nsresult.

git-svn-id: svn://10.0.0.236/trunk@29904 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
warren%netscape.com
1999-04-30 22:55:16 +00:00
parent 1da4ca1637
commit 30029587ee
2 changed files with 18 additions and 12 deletions

View File

@@ -140,16 +140,19 @@ public:
PR_CExitMonitor(mLockObject);
}
PRStatus Wait(PRIntervalTime interval = PR_INTERVAL_NO_TIMEOUT) {
return PR_CWait(mLockObject, interval);
nsresult Wait(PRIntervalTime interval = PR_INTERVAL_NO_TIMEOUT) {
return PR_CWait(mLockObject, interval) == PR_SUCCESS
? NS_OK : NS_ERROR_FAILURE;
}
PRStatus Notify() {
return PR_CNotify(mLockObject);
nsresult Notify() {
return PR_CNotify(mLockObject) == PR_SUCCESS
? NS_OK : NS_ERROR_FAILURE;
}
PRStatus NotifyAll() {
return PR_CNotifyAll(mLockObject);
nsresult NotifyAll() {
return PR_CNotifyAll(mLockObject) == PR_SUCCESS
? NS_OK : NS_ERROR_FAILURE;
}
private:

View File

@@ -140,16 +140,19 @@ public:
PR_CExitMonitor(mLockObject);
}
PRStatus Wait(PRIntervalTime interval = PR_INTERVAL_NO_TIMEOUT) {
return PR_CWait(mLockObject, interval);
nsresult Wait(PRIntervalTime interval = PR_INTERVAL_NO_TIMEOUT) {
return PR_CWait(mLockObject, interval) == PR_SUCCESS
? NS_OK : NS_ERROR_FAILURE;
}
PRStatus Notify() {
return PR_CNotify(mLockObject);
nsresult Notify() {
return PR_CNotify(mLockObject) == PR_SUCCESS
? NS_OK : NS_ERROR_FAILURE;
}
PRStatus NotifyAll() {
return PR_CNotifyAll(mLockObject);
nsresult NotifyAll() {
return PR_CNotifyAll(mLockObject) == PR_SUCCESS
? NS_OK : NS_ERROR_FAILURE;
}
private: