From 4c4821e3052ca3376f3f43891378f5d9306dfceb Mon Sep 17 00:00:00 2001 From: Jan Zerebecki Date: Sat, 10 Mar 2007 22:08:28 +0100 Subject: [PATCH] dsound: Conform critical section DebugInfo names. --- dlls/dsound/buffer.c | 4 ++-- dlls/dsound/capture.c | 2 +- dlls/dsound/dsound.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dlls/dsound/buffer.c b/dlls/dsound/buffer.c index 45133d50daa..3f75037af4e 100644 --- a/dlls/dsound/buffer.c +++ b/dlls/dsound/buffer.c @@ -1180,7 +1180,7 @@ HRESULT IDirectSoundBufferImpl_Create( DSOUND_RecalcVolPan(&(dsb->volpan)); InitializeCriticalSection(&(dsb->lock)); - dsb->lock.DebugInfo->Spare[0] = (DWORD_PTR)"DSOUNDBUFFER_lock"; + dsb->lock.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": IDirectSoundBufferImpl.lock"); /* register buffer if not primary */ if (!(dsbd->dwFlags & DSBCAPS_PRIMARYBUFFER)) { @@ -1319,7 +1319,7 @@ HRESULT IDirectSoundBufferImpl_Duplicate( CopyMemory(dsb->pwfx, pdsb->pwfx, size); InitializeCriticalSection(&(dsb->lock)); - dsb->lock.DebugInfo->Spare[0] = (DWORD_PTR)"DSOUNDBUFFER_lock"; + dsb->lock.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": IDirectSoundBufferImpl.lock"); /* register buffer */ hres = DirectSoundDevice_AddBuffer(device, dsb); diff --git a/dlls/dsound/capture.c b/dlls/dsound/capture.c index 68b1f06f015..1e14acdea7c 100644 --- a/dlls/dsound/capture.c +++ b/dlls/dsound/capture.c @@ -1665,7 +1665,7 @@ static HRESULT DirectSoundCaptureDevice_Create( device->state = STATE_STOPPED; InitializeCriticalSection( &(device->lock) ); - device->lock.DebugInfo->Spare[0] = (DWORD_PTR)"DSCAPTURE_lock"; + device->lock.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": DirectSoundCaptureDevice.lock"); *ppDevice = device; diff --git a/dlls/dsound/dsound.c b/dlls/dsound/dsound.c index 666ddaa6005..33df1026b98 100644 --- a/dlls/dsound/dsound.c +++ b/dlls/dsound/dsound.c @@ -1224,7 +1224,7 @@ static HRESULT DirectSoundDevice_Create(DirectSoundDevice ** ppDevice) device->pwfx->cbSize = 0; InitializeCriticalSection(&(device->mixlock)); - device->mixlock.DebugInfo->Spare[0] = (DWORD_PTR)"DSOUND_mixlock"; + device->mixlock.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": DirectSoundDevice.mixlock"); RtlInitializeResource(&(device->buffer_list_lock)); -- 2.11.4.GIT