|
Size: 700
Comment:
|
Size: 704
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 20: | Line 20: |
| The lock manipulated by these functions protects the callback function. During a SDL_LockAudio()/[[SDL_UnlockAudio]]() pair, you can be guaranteed that the callback function is not running. | The lock manipulated by these functions protects the callback function. During a [[SDL_LockAudio]]()/[[SDL_UnlockAudio]]() pair, you can be guaranteed that the callback function is not running. |
SDL_LockAudio
Use this function to lock out the callback function.
Syntax
void SDL_LockAudio(void)
Code Examples
You can add your code example here
Remarks
The lock manipulated by these functions protects the callback function. During a SDL_LockAudio()/SDL_UnlockAudio() pair, you can be guaranteed that the callback function is not running.
Do not call these from the callback function or you will cause deadlock.
