2011-08-06 12:24:36 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol client.
|
|
|
|
* Thread Utils
|
|
|
|
*
|
|
|
|
* Copyright 2011 Vic Lee
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <freerdp/utils/memory.h>
|
|
|
|
#include <freerdp/utils/thread.h>
|
|
|
|
|
2011-08-16 01:05:48 +04:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <Windows.h>
|
2011-08-16 22:41:12 +04:00
|
|
|
|
|
|
|
struct timespec
|
|
|
|
{
|
|
|
|
uint64 tv_sec;
|
|
|
|
uint64 tv_nsec;
|
|
|
|
};
|
2011-08-16 01:05:48 +04:00
|
|
|
#endif
|
|
|
|
|
2011-08-06 12:24:36 +04:00
|
|
|
freerdp_thread* freerdp_thread_new(void)
|
|
|
|
{
|
|
|
|
freerdp_thread* thread;
|
|
|
|
|
|
|
|
thread = xnew(freerdp_thread);
|
|
|
|
thread->mutex = freerdp_mutex_new();
|
|
|
|
thread->signals[0] = wait_obj_new();
|
|
|
|
thread->signals[1] = wait_obj_new();
|
|
|
|
thread->num_signals = 2;
|
|
|
|
|
|
|
|
return thread;
|
|
|
|
}
|
|
|
|
|
|
|
|
void freerdp_thread_start(freerdp_thread* thread, void* func, void* arg)
|
|
|
|
{
|
|
|
|
thread->status = 1;
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
{
|
|
|
|
DWORD th;
|
|
|
|
CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)func, arg, 0, &th);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
{
|
|
|
|
pthread_t th;
|
|
|
|
pthread_create(&th, 0, func, arg);
|
|
|
|
pthread_detach(th);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void freerdp_thread_stop(freerdp_thread* thread)
|
|
|
|
{
|
2011-08-16 22:41:12 +04:00
|
|
|
int i = 0;
|
2011-08-06 12:24:36 +04:00
|
|
|
|
2011-08-16 22:41:12 +04:00
|
|
|
#ifndef _WIN32
|
|
|
|
struct timespec ts;
|
2011-08-06 12:24:36 +04:00
|
|
|
ts.tv_sec = 0;
|
|
|
|
ts.tv_nsec = 10000000;
|
2011-08-16 22:41:12 +04:00
|
|
|
#else
|
|
|
|
DWORD dwMilliseconds;
|
|
|
|
dwMilliseconds = 10000;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
wait_obj_set(thread->signals[0]);
|
|
|
|
|
2011-08-06 12:24:36 +04:00
|
|
|
while (thread->status > 0 && i < 1000)
|
|
|
|
{
|
|
|
|
i++;
|
2011-08-16 22:41:12 +04:00
|
|
|
#ifndef _WIN32
|
2011-08-06 12:24:36 +04:00
|
|
|
nanosleep(&ts, NULL);
|
2011-08-16 22:41:12 +04:00
|
|
|
#else
|
|
|
|
SleepEx(dwMilliseconds, 0);
|
|
|
|
#endif
|
2011-08-06 12:24:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < thread->num_signals; i++)
|
|
|
|
wait_obj_free(thread->signals[i]);
|
|
|
|
thread->num_signals = 0;
|
|
|
|
|
|
|
|
freerdp_mutex_free(thread->mutex);
|
|
|
|
thread->mutex = NULL;
|
|
|
|
|
|
|
|
xfree(thread);
|
|
|
|
}
|