2012-09-18 20:57:19 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef WINPR_SYNCH_PRIVATE_H
|
|
|
|
#define WINPR_SYNCH_PRIVATE_H
|
|
|
|
|
2013-08-04 03:50:17 +04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2013-07-29 19:57:29 +04:00
|
|
|
#include <winpr/platform.h>
|
|
|
|
|
2012-09-18 20:57:19 +04:00
|
|
|
#include <winpr/synch.h>
|
|
|
|
|
2014-01-26 09:06:27 +04:00
|
|
|
#ifdef __linux__
|
|
|
|
#define WITH_POSIX_TIMER 1
|
|
|
|
#endif
|
|
|
|
|
2012-09-19 01:33:52 +04:00
|
|
|
#ifndef _WIN32
|
|
|
|
|
2013-05-17 01:32:58 +04:00
|
|
|
#include "../handle/handle.h"
|
|
|
|
|
2012-11-28 21:47:04 +04:00
|
|
|
#define WINPR_PIPE_SEMAPHORE 1
|
|
|
|
|
2012-09-18 20:57:19 +04:00
|
|
|
#if defined __APPLE__
|
|
|
|
#include <pthread.h>
|
2014-01-26 09:06:27 +04:00
|
|
|
#include <sys/time.h>
|
2012-09-18 20:57:19 +04:00
|
|
|
#include <semaphore.h>
|
|
|
|
#include <mach/mach.h>
|
|
|
|
#include <mach/semaphore.h>
|
|
|
|
#include <mach/task.h>
|
|
|
|
#define winpr_sem_t semaphore_t
|
|
|
|
#else
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <semaphore.h>
|
|
|
|
#define winpr_sem_t sem_t
|
|
|
|
#endif
|
|
|
|
|
2013-05-17 01:32:58 +04:00
|
|
|
struct winpr_mutex
|
|
|
|
{
|
|
|
|
WINPR_HANDLE_DEF();
|
|
|
|
|
|
|
|
pthread_mutex_t mutex;
|
|
|
|
};
|
|
|
|
typedef struct winpr_mutex WINPR_MUTEX;
|
|
|
|
|
2012-11-28 21:47:04 +04:00
|
|
|
struct winpr_semaphore
|
|
|
|
{
|
2013-05-17 01:32:58 +04:00
|
|
|
WINPR_HANDLE_DEF();
|
|
|
|
|
2012-11-28 21:47:04 +04:00
|
|
|
int pipe_fd[2];
|
|
|
|
winpr_sem_t* sem;
|
|
|
|
};
|
|
|
|
typedef struct winpr_semaphore WINPR_SEMAPHORE;
|
|
|
|
|
2012-09-19 02:36:13 +04:00
|
|
|
struct winpr_event
|
|
|
|
{
|
2013-05-17 01:32:58 +04:00
|
|
|
WINPR_HANDLE_DEF();
|
|
|
|
|
2012-09-19 02:36:13 +04:00
|
|
|
int pipe_fd[2];
|
2012-11-27 03:02:41 +04:00
|
|
|
BOOL bAttached;
|
2012-09-19 02:36:13 +04:00
|
|
|
BOOL bManualReset;
|
|
|
|
};
|
|
|
|
typedef struct winpr_event WINPR_EVENT;
|
|
|
|
|
2013-08-04 03:50:17 +04:00
|
|
|
#ifdef HAVE_TIMERFD_H
|
2013-07-29 19:57:29 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/timerfd.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct winpr_timer
|
|
|
|
{
|
|
|
|
WINPR_HANDLE_DEF();
|
|
|
|
|
|
|
|
int fd;
|
2014-01-25 07:44:23 +04:00
|
|
|
BOOL bInit;
|
2013-07-29 19:57:29 +04:00
|
|
|
LONG lPeriod;
|
|
|
|
BOOL bManualReset;
|
|
|
|
PTIMERAPCROUTINE pfnCompletionRoutine;
|
|
|
|
LPVOID lpArgToCompletionRoutine;
|
2014-01-26 09:06:27 +04:00
|
|
|
|
|
|
|
#ifdef WITH_POSIX_TIMER
|
|
|
|
timer_t tid;
|
|
|
|
#endif
|
2013-07-29 19:57:29 +04:00
|
|
|
|
2013-08-04 03:50:17 +04:00
|
|
|
#ifdef HAVE_TIMERFD_H
|
2013-07-29 19:57:29 +04:00
|
|
|
struct itimerspec timeout;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
typedef struct winpr_timer WINPR_TIMER;
|
|
|
|
|
2014-01-26 21:37:32 +04:00
|
|
|
typedef struct winpr_timer_queue_timer WINPR_TIMER_QUEUE_TIMER;
|
|
|
|
|
2014-01-25 02:48:55 +04:00
|
|
|
struct winpr_timer_queue
|
|
|
|
{
|
|
|
|
WINPR_HANDLE_DEF();
|
2014-01-26 21:37:32 +04:00
|
|
|
|
|
|
|
pthread_t thread;
|
|
|
|
pthread_attr_t attr;
|
|
|
|
pthread_cond_t cond;
|
|
|
|
pthread_mutex_t mutex;
|
|
|
|
struct sched_param param;
|
|
|
|
|
2014-01-27 02:21:12 +04:00
|
|
|
int resolution;
|
|
|
|
|
2014-01-26 21:37:32 +04:00
|
|
|
WINPR_TIMER_QUEUE_TIMER* head;
|
2014-01-25 02:48:55 +04:00
|
|
|
};
|
|
|
|
typedef struct winpr_timer_queue WINPR_TIMER_QUEUE;
|
|
|
|
|
|
|
|
struct winpr_timer_queue_timer
|
|
|
|
{
|
|
|
|
WINPR_HANDLE_DEF();
|
2014-01-25 07:44:23 +04:00
|
|
|
|
|
|
|
ULONG Flags;
|
|
|
|
DWORD DueTime;
|
|
|
|
DWORD Period;
|
|
|
|
PVOID Parameter;
|
|
|
|
WAITORTIMERCALLBACK Callback;
|
2014-01-26 21:37:32 +04:00
|
|
|
|
2014-01-27 02:21:12 +04:00
|
|
|
int FireCount;
|
|
|
|
UINT64 StartTime;
|
|
|
|
UINT64 ExpirationTime;
|
|
|
|
|
2014-01-26 21:37:32 +04:00
|
|
|
WINPR_TIMER_QUEUE* timerQueue;
|
|
|
|
|
|
|
|
WINPR_TIMER_QUEUE_TIMER* prev;
|
|
|
|
WINPR_TIMER_QUEUE_TIMER* next;
|
2014-01-25 02:48:55 +04:00
|
|
|
};
|
|
|
|
|
2012-09-19 01:33:52 +04:00
|
|
|
#endif
|
|
|
|
|
2012-09-18 20:57:19 +04:00
|
|
|
#endif /* WINPR_SYNCH_PRIVATE_H */
|