예제 #1
0
파일: sem_osx.cpp 프로젝트: MattUV/godot
Error SemaphoreOSX::wait() {

	cgsem_wait(&sem);
	return OK;
}
예제 #2
0
Error SemaphoreIphone::wait() {

	cgsem_wait(&sem);
	return OK;
}