summaryrefslogtreecommitdiff
path: root/rdbmaker/inc/codemaker/registry.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'rdbmaker/inc/codemaker/registry.hxx')
-rw-r--r--rdbmaker/inc/codemaker/registry.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/rdbmaker/inc/codemaker/registry.hxx b/rdbmaker/inc/codemaker/registry.hxx
index 78368b1ec190..404d53bfe571 100644
--- a/rdbmaker/inc/codemaker/registry.hxx
+++ b/rdbmaker/inc/codemaker/registry.hxx
@@ -95,12 +95,12 @@ public:
inline void acquire()
{
if (m_pImpl)
- osl_incrementInterlockedCount(&m_pImpl->m_refCount);
+ osl_atomic_increment(&m_pImpl->m_refCount);
}
inline void release()
{
- if (m_pImpl && 0 == osl_decrementInterlockedCount(&m_pImpl->m_refCount))
+ if (m_pImpl && 0 == osl_atomic_decrement(&m_pImpl->m_refCount))
{
delete m_pImpl;
}