1
0
Fork 0
forked from len0rd/rockbox

Change a #define constant that conflicts with a mingw definition. Change "WAIT_*" to "OBJ_WAIT_*".

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16906 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sevakis 2008-04-01 03:55:02 +00:00
parent 5e0435b0d9
commit 3c8d93e091
3 changed files with 7 additions and 6 deletions

View file

@ -1386,7 +1386,7 @@ void wakeup_init(struct wakeup *w)
/* Wait for a signal blocking indefinitely or for a specified period */
int wakeup_wait(struct wakeup *w, int timeout)
{
int ret = WAIT_SUCCEEDED; /* Presume success */
int ret = OBJ_WAIT_SUCCEEDED; /* Presume success */
int oldlevel = disable_irq_save();
corelock_lock(&w->cl);
@ -1413,7 +1413,8 @@ int wakeup_wait(struct wakeup *w, int timeout)
if(w->signalled == 0)
{
/* Timed-out or failed */
ret = (timeout != TIMEOUT_BLOCK) ? WAIT_TIMEDOUT : WAIT_FAILED;
ret = (timeout != TIMEOUT_BLOCK) ?
OBJ_WAIT_TIMEDOUT : OBJ_WAIT_FAILED;
}
w->signalled = 0; /* Reset */