diff options
author | Chris Robinson <[email protected]> | 2013-10-26 12:39:19 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-10-26 12:39:19 -0700 |
commit | ff5277f4d7057f481a820cf64e2c2db4687bfd5f (patch) | |
tree | 8ad3dcfddc5354b25c74a96011e3532b724382ac /OpenAL32/Include | |
parent | 6617985a4ee765a86d9175e0e86197c03a8f1b8c (diff) |
Add a method to set the running thread's name
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alMain.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 11a1e78c..d8dbdcd9 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -813,6 +813,8 @@ void RestoreFPUMode(const FPUCtl *ctl); ALvoid *StartThread(ALuint (*func)(ALvoid*), ALvoid *ptr); ALuint StopThread(ALvoid *thread); +void SetThreadName(const char *name); + typedef struct RingBuffer RingBuffer; RingBuffer *CreateRingBuffer(ALsizei frame_size, ALsizei length); void DestroyRingBuffer(RingBuffer *ring); |