Example #1
0
static void memoryLoaded() {
	sSemaphore.post();
}
Example #2
0
void stopUserThread() {
	run = false;
	sPause.post();
}
Example #3
0
static void errorCallback() {
	//TODO: set error state, so thread knows not to continue?
	sSemaphore.post();
	setErrorCallback(NULL);
}
Example #4
0
void resumeUserInput() {
	sPause.post();
}