FreeRDP/winpr/libwinpr/synch/mutex.c

146 lines
3.0 KiB
C
Raw Normal View History

2012-05-29 22:14:26 +04:00
/**
* WinPR: Windows Portable Runtime
* Synchronization Functions
*
* Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
2012-05-29 22:14:26 +04:00
#include <winpr/synch.h>
#include "synch.h"
#ifndef _WIN32
2013-05-17 01:32:58 +04:00
#include "../handle/handle.h"
2015-03-11 17:11:14 +03:00
static BOOL MutexCloseHandle(HANDLE handle);
static BOOL MutexIsHandled(HANDLE handle)
{
WINPR_TIMER* pMutex = (WINPR_TIMER*) handle;
if (!pMutex || pMutex->Type != HANDLE_TYPE_MUTEX)
{
SetLastError(ERROR_INVALID_HANDLE);
return FALSE;
}
return TRUE;
}
2015-03-11 19:57:01 +03:00
static int MutexGetFd(HANDLE handle)
2015-03-11 17:11:14 +03:00
{
2015-03-11 19:57:01 +03:00
WINPR_MUTEX *mux = (WINPR_MUTEX *)handle;
if (!MutexIsHandled(handle))
return -1;
/* TODO: Mutex does not support file handles... */
(void)mux;
return -1;
2015-03-11 17:11:14 +03:00
}
BOOL MutexCloseHandle(HANDLE handle) {
WINPR_MUTEX *mutex = (WINPR_MUTEX *) handle;
if (!MutexIsHandled(handle))
return FALSE;
if(pthread_mutex_destroy(&mutex->mutex))
return FALSE;
free(handle);
return TRUE;
}
2013-05-17 01:32:58 +04:00
static HANDLE_OPS ops = {
MutexIsHandled,
MutexCloseHandle,
MutexGetFd,
NULL /* CleanupHandle */
};
HANDLE CreateMutexW(LPSECURITY_ATTRIBUTES lpMutexAttributes, BOOL bInitialOwner, LPCWSTR lpName)
{
HANDLE handle = NULL;
2013-05-17 01:32:58 +04:00
WINPR_MUTEX* mutex;
2015-03-11 20:09:22 +03:00
mutex = (WINPR_MUTEX*) calloc(1, sizeof(WINPR_MUTEX));
2013-05-17 01:32:58 +04:00
if (mutex)
{
2013-05-17 01:32:58 +04:00
pthread_mutex_init(&mutex->mutex, 0);
WINPR_HANDLE_SET_TYPE(mutex, HANDLE_TYPE_MUTEX);
mutex->ops = &ops;
2015-03-11 19:57:01 +03:00
handle = (HANDLE) mutex;
2013-05-17 01:32:58 +04:00
if (bInitialOwner)
2013-05-17 01:32:58 +04:00
pthread_mutex_lock(&mutex->mutex);
}
return handle;
}
HANDLE CreateMutexA(LPSECURITY_ATTRIBUTES lpMutexAttributes, BOOL bInitialOwner, LPCSTR lpName)
{
return CreateMutexW(lpMutexAttributes, bInitialOwner, NULL);
}
HANDLE CreateMutexExA(LPSECURITY_ATTRIBUTES lpMutexAttributes, LPCTSTR lpName, DWORD dwFlags, DWORD dwDesiredAccess)
{
return CreateMutexW(lpMutexAttributes, FALSE, NULL);
}
HANDLE CreateMutexExW(LPSECURITY_ATTRIBUTES lpMutexAttributes, LPCWSTR lpName, DWORD dwFlags, DWORD dwDesiredAccess)
{
return CreateMutexW(lpMutexAttributes, FALSE, NULL);
}
HANDLE OpenMutexA(DWORD dwDesiredAccess, BOOL bInheritHandle,LPCSTR lpName)
{
return NULL;
}
2012-05-29 22:14:26 +04:00
HANDLE OpenMutexW(DWORD dwDesiredAccess, BOOL bInheritHandle,LPCWSTR lpName)
{
return NULL;
}
2012-05-29 22:14:26 +04:00
BOOL ReleaseMutex(HANDLE hMutex)
{
ULONG Type;
PVOID Object;
2013-05-17 01:32:58 +04:00
WINPR_MUTEX* mutex;
if (!winpr_Handle_GetInfo(hMutex, &Type, &Object))
return FALSE;
if (Type == HANDLE_TYPE_MUTEX)
{
2013-05-17 01:32:58 +04:00
mutex = (WINPR_MUTEX*) Object;
pthread_mutex_unlock(&mutex->mutex);
return TRUE;
}
return FALSE;
}
#endif