libvirt/src/util/virthread.c

35 lines
1.1 KiB
C
Raw Normal View History

2009-01-15 19:56:05 +00:00
/*
* virthread.c: basic thread synchronization primitives
2009-01-15 19:56:05 +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, see
* <http://www.gnu.org/licenses/>.
2009-01-15 19:56:05 +00:00
*
*/
#include <config.h>
#include "virthread.h"
2009-01-15 19:56:05 +00:00
/* On mingw, we prefer native threading over the sometimes-broken
* pthreads-win32 library wrapper. */
#ifdef WIN32
# include "virthreadwin32.c"
#elif defined HAVE_PTHREAD_MUTEXATTR_INIT
# include "virthreadpthread.c"
2009-01-15 19:56:05 +00:00
#else
# error "Either pthreads or Win32 threads are required"
2009-01-15 19:56:05 +00:00
#endif