xrdp/common/thread_calls.c

128 lines
2.9 KiB
C
Raw Normal View History

2005-06-28 07:04:36 +04:00
/*
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
xrdp: A Remote Desktop Protocol server.
2007-01-12 08:01:58 +03:00
Copyright (C) Jay Sorg 2004-2007
2005-06-28 07:04:36 +04:00
thread calls
*/
#if defined(_WIN32)
#include <windows.h>
#else
#include <pthread.h>
#endif
2005-12-14 04:18:06 +03:00
#include "arch.h"
#include "thread_calls.h"
2007-02-03 09:17:24 +03:00
#include "os_calls.h"
2005-06-28 07:04:36 +04:00
/*****************************************************************************/
2006-09-23 05:57:16 +04:00
/* returns error */
2005-06-28 07:04:36 +04:00
#if defined(_WIN32)
2005-12-14 04:18:06 +03:00
int APP_CC
2007-02-03 09:17:24 +03:00
tc_thread_create(unsigned long (__stdcall * start_routine)(void*), void* arg)
2005-06-28 07:04:36 +04:00
{
2006-09-23 05:57:16 +04:00
DWORD thread_id;
HANDLE thread;
int rv;
2005-06-28 07:04:36 +04:00
2006-09-23 05:57:16 +04:00
/* CreateThread returns handle or zero on error */
thread = CreateThread(0, 0, start_routine, arg, 0, &thread_id);
rv = !thread;
CloseHandle(thread);
return rv;
2005-06-28 07:04:36 +04:00
}
#else
2005-12-14 04:18:06 +03:00
int APP_CC
2007-02-03 09:17:24 +03:00
tc_thread_create(void* (* start_routine)(void*), void* arg)
2005-06-28 07:04:36 +04:00
{
pthread_t thread;
int rv;
2006-09-23 05:57:16 +04:00
/* pthread_create returns error */
2005-06-28 07:04:36 +04:00
rv = pthread_create(&thread, 0, start_routine, arg);
pthread_detach(thread);
return rv;
}
#endif
/*****************************************************************************/
2005-12-14 04:18:06 +03:00
long APP_CC
2007-02-03 09:17:24 +03:00
tc_get_threadid(void)
2005-06-28 07:04:36 +04:00
{
#if defined(_WIN32)
2006-09-23 06:01:13 +04:00
return (long)GetCurrentThreadId();
2005-06-28 07:04:36 +04:00
#else
2005-12-14 04:18:06 +03:00
return (long)pthread_self();
2005-06-28 07:04:36 +04:00
#endif
}
2007-02-03 09:17:24 +03:00
/*****************************************************************************/
long APP_CC
tc_create_mutex(void)
{
#if defined(_WIN32)
return (long)CreateMutex(0, 0, 0);
#else
pthread_mutex_t* lmutex;
lmutex = (pthread_mutex_t*)g_malloc(sizeof(pthread_mutex_t), 0);
pthread_mutex_init(lmutex, 0);
return (long)lmutex;
#endif
}
/*****************************************************************************/
void APP_CC
tc_delete_mutex(long mutex)
{
#if defined(_WIN32)
CloseHandle((HANDLE)mutex);
#else
pthread_mutex_t* lmutex;
lmutex = (pthread_mutex_t*)mutex;
pthread_mutex_destroy(lmutex);
g_free(lmutex);
#endif
}
/*****************************************************************************/
int APP_CC
tc_lock_mutex(long mutex)
{
#if defined(_WIN32)
WaitForSingleObject((HANDLE)mutex, INFINITE);
return 0;
#else
pthread_mutex_lock((pthread_mutex_t*)mutex);
return 0;
#endif
}
/*****************************************************************************/
int APP_CC
tc_unlock_mutex(long mutex)
{
#if defined(_WIN32)
ReleaseMutex((HANDLE)mutex);
return 0;
#else
pthread_mutex_unlock((pthread_mutex_t*)mutex);
return 0;
#endif
}