1
0
Fork 0
forked from len0rd/rockbox

yp-r0: Silence a build warning in simulator build.

Change-Id: I024b6393d778261da151c9756ed38230054b0e7b
This commit is contained in:
Solomon Peachy 2020-07-07 14:11:26 -04:00
parent 92a529b4d1
commit 7381e8bd4d

View file

@ -35,6 +35,8 @@
#include "panic.h"
#include "timer.h"
/* Forward-declaration */
void interrupt(void);
static pthread_cond_t wfi_cond = PTHREAD_COND_INITIALIZER;
static pthread_mutex_t wfi_mtx = PTHREAD_MUTEX_INITIALIZER;
@ -63,7 +65,6 @@ void interrupt(void)
pthread_cond_signal(&wfi_cond);
}
/*
* setup a hrtimer to send a signal to our process every tick
*