2009-01-15 19:56:05 +00:00
|
|
|
/*
|
|
|
|
* threads.h: basic thread synchronization primitives
|
|
|
|
*
|
2011-04-20 22:26:00 +00:00
|
|
|
* Copyright (C) 2009-2011 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
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 10:06:23 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2009-01-15 19:56:05 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __THREADS_H_
|
2010-03-09 18:22:22 +00:00
|
|
|
# define __THREADS_H_
|
2009-01-15 19:56:05 +00:00
|
|
|
|
2010-03-09 18:22:22 +00:00
|
|
|
# include "internal.h"
|
2009-01-15 19:56:05 +00:00
|
|
|
|
|
|
|
typedef struct virMutex virMutex;
|
|
|
|
typedef virMutex *virMutexPtr;
|
|
|
|
|
|
|
|
typedef struct virCond virCond;
|
|
|
|
typedef virCond *virCondPtr;
|
|
|
|
|
|
|
|
typedef struct virThreadLocal virThreadLocal;
|
|
|
|
typedef virThreadLocal *virThreadLocalPtr;
|
|
|
|
|
2010-11-02 17:17:47 +00:00
|
|
|
typedef struct virThread virThread;
|
|
|
|
typedef virThread *virThreadPtr;
|
|
|
|
|
2011-04-20 22:26:00 +00:00
|
|
|
typedef struct virOnceControl virOnceControl;
|
|
|
|
typedef virOnceControl *virOnceControlPtr;
|
|
|
|
|
|
|
|
typedef void (*virOnceFunc)(void);
|
2009-01-15 19:56:05 +00:00
|
|
|
|
|
|
|
int virThreadInitialize(void) ATTRIBUTE_RETURN_CHECK;
|
|
|
|
void virThreadOnExit(void);
|
|
|
|
|
2010-11-02 17:17:47 +00:00
|
|
|
typedef void (*virThreadFunc)(void *opaque);
|
|
|
|
|
|
|
|
int virThreadCreate(virThreadPtr thread,
|
|
|
|
bool joinable,
|
|
|
|
virThreadFunc func,
|
|
|
|
void *opaque) ATTRIBUTE_RETURN_CHECK;
|
|
|
|
void virThreadSelf(virThreadPtr thread);
|
|
|
|
bool virThreadIsSelf(virThreadPtr thread);
|
|
|
|
void virThreadJoin(virThreadPtr thread);
|
2010-12-04 21:33:23 +00:00
|
|
|
|
|
|
|
/* These next two functions are for debugging only, since they are not
|
|
|
|
* guaranteed to give unique values for distinct threads on all
|
|
|
|
* architectures, nor are the two functions guaranteed to give the same
|
|
|
|
* value for the same thread. */
|
2010-11-18 13:03:56 +00:00
|
|
|
int virThreadSelfID(void);
|
2010-12-04 21:33:23 +00:00
|
|
|
int virThreadID(virThreadPtr thread);
|
2010-11-02 17:17:47 +00:00
|
|
|
|
2011-04-20 22:26:00 +00:00
|
|
|
/* Static initialization of mutexes is not possible, so we instead
|
|
|
|
* provide for guaranteed one-time initialization via a callback
|
|
|
|
* function. Usage:
|
|
|
|
* static virOnceControl once = VIR_ONCE_CONTROL_INITIALIZER;
|
|
|
|
* static void initializer(void) { ... }
|
|
|
|
* void myfunc()
|
|
|
|
* {
|
|
|
|
* if (virOnce(&once, initializer) < 0)
|
|
|
|
* goto error;
|
|
|
|
* ...now guaranteed that initializer has completed exactly once
|
|
|
|
* }
|
|
|
|
*/
|
|
|
|
int virOnce(virOnceControlPtr once, virOnceFunc init)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_RETURN_CHECK;
|
|
|
|
|
2009-01-15 19:56:05 +00:00
|
|
|
int virMutexInit(virMutexPtr m) ATTRIBUTE_RETURN_CHECK;
|
2010-03-25 17:45:59 +00:00
|
|
|
int virMutexInitRecursive(virMutexPtr m) ATTRIBUTE_RETURN_CHECK;
|
2009-01-15 19:56:05 +00:00
|
|
|
void virMutexDestroy(virMutexPtr m);
|
|
|
|
|
|
|
|
void virMutexLock(virMutexPtr m);
|
|
|
|
void virMutexUnlock(virMutexPtr m);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int virCondInit(virCondPtr c) ATTRIBUTE_RETURN_CHECK;
|
|
|
|
int virCondDestroy(virCondPtr c) ATTRIBUTE_RETURN_CHECK;
|
|
|
|
|
2011-12-09 16:14:15 +00:00
|
|
|
/* virCondWait, virCondWaitUntil:
|
|
|
|
* These functions can return without the associated predicate
|
|
|
|
* changing value. Therefore in nearly all cases they
|
|
|
|
* should be enclosed in a while loop that checks the predicate.
|
|
|
|
*/
|
2009-01-15 19:56:05 +00:00
|
|
|
int virCondWait(virCondPtr c, virMutexPtr m) ATTRIBUTE_RETURN_CHECK;
|
2009-11-03 18:40:15 +00:00
|
|
|
int virCondWaitUntil(virCondPtr c, virMutexPtr m, unsigned long long whenms) ATTRIBUTE_RETURN_CHECK;
|
2011-12-09 16:14:15 +00:00
|
|
|
|
2009-01-15 19:56:05 +00:00
|
|
|
void virCondSignal(virCondPtr c);
|
|
|
|
void virCondBroadcast(virCondPtr c);
|
|
|
|
|
|
|
|
|
|
|
|
typedef void (*virThreadLocalCleanup)(void *);
|
|
|
|
int virThreadLocalInit(virThreadLocalPtr l,
|
|
|
|
virThreadLocalCleanup c) ATTRIBUTE_RETURN_CHECK;
|
|
|
|
void *virThreadLocalGet(virThreadLocalPtr l);
|
2011-12-20 22:06:47 +00:00
|
|
|
int virThreadLocalSet(virThreadLocalPtr l, void*) ATTRIBUTE_RETURN_CHECK;
|
2009-01-15 19:56:05 +00:00
|
|
|
|
2010-06-09 13:12:21 +00:00
|
|
|
# ifdef WIN32
|
|
|
|
# include "threads-win32.h"
|
|
|
|
# elif defined HAVE_PTHREAD_MUTEXATTR_INIT
|
2010-03-09 18:22:22 +00:00
|
|
|
# include "threads-pthread.h"
|
|
|
|
# else
|
2010-06-09 13:12:21 +00:00
|
|
|
# error "Either pthreads or Win32 threads are required"
|
2010-03-09 18:22:22 +00:00
|
|
|
# endif
|
2009-01-15 19:56:05 +00:00
|
|
|
|
2012-07-20 14:03:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* VIR_ONCE_GLOBAL_INIT:
|
|
|
|
* classname: base classname
|
|
|
|
*
|
|
|
|
* This macro simplifies the setup of a one-time only
|
|
|
|
* global file initializer.
|
|
|
|
*
|
|
|
|
* Assuming a class called "virMyObject", and a method
|
|
|
|
* implemented like:
|
|
|
|
*
|
|
|
|
* int virMyObjectOnceInit(void) {
|
|
|
|
* ...do init tasks...
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* Then invoking the macro:
|
|
|
|
*
|
|
|
|
* VIR_ONCE_GLOBAL_INIT(virMyObject)
|
|
|
|
*
|
|
|
|
* Will create a method
|
|
|
|
*
|
|
|
|
* int virMyObjectInitialize(void);
|
|
|
|
*
|
|
|
|
* Which will ensure that 'virMyObjectOnceInit' is
|
|
|
|
* guaranteed to be invoked exactly once.
|
|
|
|
*/
|
|
|
|
# define VIR_ONCE_GLOBAL_INIT(classname) \
|
|
|
|
static virOnceControl classname ## OnceControl = VIR_ONCE_CONTROL_INITIALIZER; \
|
|
|
|
static virErrorPtr classname ## OnceError = NULL; \
|
|
|
|
\
|
|
|
|
static void classname ## Once(void) \
|
|
|
|
{ \
|
|
|
|
if (classname ## OnceInit() < 0) \
|
|
|
|
classname ## OnceError = virSaveLastError(); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
static int classname ## Initialize(void) \
|
|
|
|
{ \
|
|
|
|
if (virOnce(&classname ## OnceControl, classname ## Once) < 0) \
|
|
|
|
return -1; \
|
|
|
|
\
|
|
|
|
if (classname ## OnceError) { \
|
|
|
|
virSetError(classname ## OnceError); \
|
|
|
|
return -1; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
return 0; \
|
|
|
|
}
|
|
|
|
|
2009-01-15 19:56:05 +00:00
|
|
|
#endif
|