Duckstation/dep/cubeb/src/cubeb_utils_win.h

68 lines
1.5 KiB
C
Raw Normal View History

2020-01-10 04:59:53 +00:00
/*
* Copyright © 2016 Mozilla Foundation
*
* This program is made available under an ISC-style license. See the
* accompanying file LICENSE for details.
*/
#if !defined(CUBEB_UTILS_WIN)
#define CUBEB_UTILS_WIN
#include "cubeb-internal.h"
2022-08-05 07:28:17 +00:00
#include <windows.h>
2020-01-10 04:59:53 +00:00
2022-08-05 07:28:17 +00:00
/* This wraps an SRWLock to track the owner in debug mode, adapted from
NSPR and http://blogs.msdn.com/b/oldnewthing/archive/2013/07/12/10433554.aspx
*/
class owned_critical_section {
2020-01-10 04:59:53 +00:00
public:
owned_critical_section()
2022-08-05 07:28:17 +00:00
: srwlock(SRWLOCK_INIT)
2020-01-10 04:59:53 +00:00
#ifndef NDEBUG
2022-08-05 07:28:17 +00:00
,
owner(0)
2020-01-10 04:59:53 +00:00
#endif
{
}
void lock()
{
2022-08-05 07:28:17 +00:00
AcquireSRWLockExclusive(&srwlock);
2020-01-10 04:59:53 +00:00
#ifndef NDEBUG
XASSERT(owner != GetCurrentThreadId() && "recursive locking");
owner = GetCurrentThreadId();
#endif
}
void unlock()
{
#ifndef NDEBUG
/* GetCurrentThreadId cannot return 0: it is not a the valid thread id */
owner = 0;
#endif
2022-08-05 07:28:17 +00:00
ReleaseSRWLockExclusive(&srwlock);
2020-01-10 04:59:53 +00:00
}
/* This is guaranteed to have the good behaviour if it succeeds. The behaviour
is undefined otherwise. */
void assert_current_thread_owns()
{
#ifndef NDEBUG
/* This implies owner != 0, because GetCurrentThreadId cannot return 0. */
XASSERT(owner == GetCurrentThreadId());
#endif
}
private:
2022-08-05 07:28:17 +00:00
SRWLOCK srwlock;
2020-01-10 04:59:53 +00:00
#ifndef NDEBUG
DWORD owner;
#endif
2022-08-05 07:28:17 +00:00
// Disallow copy and assignment because SRWLock cannot be copied.
owned_critical_section(const owned_critical_section &);
owned_critical_section & operator=(const owned_critical_section &);
2020-01-10 04:59:53 +00:00
};
#endif /* CUBEB_UTILS_WIN */