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