| 49 | } |
| 50 | |
| 51 | void SetEvent(event_emul *e) |
| 52 | { |
| 53 | if (SDL_LockMutex(e->mutex) <= -1 || SDL_CondSignal(e->cond) <= -1 || SDL_UnlockMutex(e->mutex) <= -1) { |
| 54 | ErrSdl(); |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | void ResetEvent(event_emul *e) |
| 59 | { |
no outgoing calls
no test coverage detected