2009-01-15 19:56:05 +00:00
|
|
|
/*
|
|
|
|
* threads-pthread.c: basic thread synchronization primitives
|
|
|
|
*
|
2010-03-18 17:32:16 +00:00
|
|
|
* Copyright (C) 2009-2010 Red Hat, Inc.
|
2009-01-15 19:56:05 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
|
|
/* Nothing special required for pthreads */
|
|
|
|
int virThreadInitialize(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void virThreadOnExit(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int virMutexInit(virMutexPtr m)
|
|
|
|
{
|
2009-10-28 19:54:07 +00:00
|
|
|
int ret;
|
2010-03-18 17:32:16 +00:00
|
|
|
pthread_mutexattr_t attr;
|
|
|
|
pthread_mutexattr_init(&attr);
|
|
|
|
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_NORMAL);
|
|
|
|
if ((ret = pthread_mutex_init(&m->lock, &attr)) != 0) {
|
2009-10-28 19:54:07 +00:00
|
|
|
errno = ret;
|
2009-01-15 19:56:05 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-03-25 17:45:59 +00:00
|
|
|
int virMutexInitRecursive(virMutexPtr m)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
pthread_mutexattr_t attr;
|
|
|
|
pthread_mutexattr_init(&attr);
|
|
|
|
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
|
|
|
|
if ((ret = pthread_mutex_init(&m->lock, &attr)) != 0) {
|
|
|
|
errno = ret;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-01-15 19:56:05 +00:00
|
|
|
void virMutexDestroy(virMutexPtr m)
|
|
|
|
{
|
|
|
|
pthread_mutex_destroy(&m->lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
void virMutexLock(virMutexPtr m){
|
|
|
|
pthread_mutex_lock(&m->lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
void virMutexUnlock(virMutexPtr m)
|
|
|
|
{
|
|
|
|
pthread_mutex_unlock(&m->lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int virCondInit(virCondPtr c)
|
|
|
|
{
|
2009-10-28 19:54:07 +00:00
|
|
|
int ret;
|
|
|
|
if ((ret = pthread_cond_init(&c->cond, NULL)) != 0) {
|
|
|
|
errno = ret;
|
2009-01-15 19:56:05 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int virCondDestroy(virCondPtr c)
|
|
|
|
{
|
2009-10-28 19:54:07 +00:00
|
|
|
int ret;
|
|
|
|
if ((ret = pthread_cond_destroy(&c->cond)) != 0) {
|
|
|
|
errno = ret;
|
2009-01-15 19:56:05 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int virCondWait(virCondPtr c, virMutexPtr m)
|
|
|
|
{
|
2009-10-28 19:54:07 +00:00
|
|
|
int ret;
|
|
|
|
if ((ret = pthread_cond_wait(&c->cond, &m->lock)) != 0) {
|
|
|
|
errno = ret;
|
2009-01-15 19:56:05 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-11-03 18:40:15 +00:00
|
|
|
int virCondWaitUntil(virCondPtr c, virMutexPtr m, unsigned long long whenms)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct timespec ts;
|
|
|
|
|
|
|
|
ts.tv_sec = whenms / 1000;
|
|
|
|
ts.tv_nsec = (whenms % 1000) * 1000;
|
|
|
|
|
|
|
|
if ((ret = pthread_cond_timedwait(&c->cond, &m->lock, &ts)) != 0) {
|
|
|
|
errno = ret;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-01-15 19:56:05 +00:00
|
|
|
void virCondSignal(virCondPtr c)
|
|
|
|
{
|
|
|
|
pthread_cond_signal(&c->cond);
|
|
|
|
}
|
|
|
|
|
|
|
|
void virCondBroadcast(virCondPtr c)
|
|
|
|
{
|
|
|
|
pthread_cond_broadcast(&c->cond);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int virThreadLocalInit(virThreadLocalPtr l,
|
|
|
|
virThreadLocalCleanup c)
|
|
|
|
{
|
2009-10-28 19:54:07 +00:00
|
|
|
int ret;
|
|
|
|
if ((ret = pthread_key_create(&l->key, c)) != 0) {
|
|
|
|
errno = ret;
|
2009-01-15 19:56:05 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *virThreadLocalGet(virThreadLocalPtr l)
|
|
|
|
{
|
|
|
|
return pthread_getspecific(l->key);
|
|
|
|
}
|
|
|
|
|
|
|
|
void virThreadLocalSet(virThreadLocalPtr l, void *val)
|
|
|
|
{
|
|
|
|
pthread_setspecific(l->key, val);
|
|
|
|
}
|