Made Notify and Wait methods return nsresult.

This commit is contained in:
warren%netscape.com 1999-04-30 22:55:16 +00:00
Родитель 88d6a3a41a
Коммит 15356905f2
2 изменённых файлов: 18 добавлений и 12 удалений

Просмотреть файл

@ -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:

Просмотреть файл

@ -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: