Fixed bug #6698 - VISA: wrong check sceKernelPollSema
parent
461a38ff1a
commit
f077c69193
|
@ -78,15 +78,15 @@ void SDL_DestroySemaphore(SDL_sem *sem)
|
||||||
int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout)
|
int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout)
|
||||||
{
|
{
|
||||||
Uint32 *pTimeout;
|
Uint32 *pTimeout;
|
||||||
unsigned int res;
|
int res;
|
||||||
|
|
||||||
if (sem == NULL) {
|
if (sem == NULL) {
|
||||||
return SDL_InvalidParamError("sem");
|
return SDL_InvalidParamError("sem");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (timeout == 0) {
|
if (timeout == 0) {
|
||||||
int res2 = sceKernelPollSema(sem->semid, 1);
|
res = sceKernelPollSema(sem->semid, 1);
|
||||||
if (res2 < 0) {
|
if (res < 0) {
|
||||||
return SDL_MUTEX_TIMEDOUT;
|
return SDL_MUTEX_TIMEDOUT;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue