Home
last modified time | relevance | path

Searched refs:rmutex (Results 1 – 1 of 1) sorted by relevance

/external/qemu/distrib/sdl-1.2.12/src/thread/epoc/
DSDL_sysmutex.cpp55 RMutex rmutex; in SDL_CreateMutex() local
57 TInt status = CreateUnique(NewMutex, &rmutex, NULL); in SDL_CreateMutex()
63 mutex->handle = rmutex.Handle(); in SDL_CreateMutex()
72 RMutex rmutex; in SDL_DestroyMutex() local
73 rmutex.SetHandle(mutex->handle); in SDL_DestroyMutex()
74 rmutex.Signal(); in SDL_DestroyMutex()
75 rmutex.Close(); in SDL_DestroyMutex()
88 RMutex rmutex; in SDL_mutexP() local
89 rmutex.SetHandle(mutex->handle); in SDL_mutexP()
90 rmutex.Wait(); in SDL_mutexP()
[all …]