2014-05-05 05:54:39 +00:00
|
|
|
#ifndef THREADS_H_
|
|
|
|
#define THREADS_H_
|
|
|
|
/*****************************************************************************
|
|
|
|
* This file is part of Kvazaar HEVC encoder.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013-2014 Tampere University of Technology and others (see
|
|
|
|
* COPYING file).
|
|
|
|
*
|
|
|
|
* Kvazaar is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as published
|
|
|
|
* by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* Kvazaar 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 Kvazaar. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <pthread.h>
|
2014-05-13 09:26:20 +00:00
|
|
|
#include <unistd.h>
|
2014-05-05 05:54:39 +00:00
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
|
|
|
|
#define ATOMIC_INC(ptr) __sync_add_and_fetch((volatile int32_t*)ptr, 1)
|
|
|
|
#define ATOMIC_DEC(ptr) __sync_add_and_fetch((volatile int32_t*)ptr, -1)
|
2014-05-13 09:26:20 +00:00
|
|
|
#define SLEEP() usleep(0)
|
2014-05-05 05:54:39 +00:00
|
|
|
|
|
|
|
#else //__GNUC__
|
|
|
|
//TODO: we assume !GCC => Windows... this may be bad
|
2014-05-05 08:18:43 +00:00
|
|
|
#include <Windows.h>
|
|
|
|
|
2014-05-05 05:54:39 +00:00
|
|
|
#define ATOMIC_INC(ptr) InterlockedIncrement((volatile LONG*)ptr)
|
|
|
|
#define ATOMIC_DEC(ptr) InterlockedDecrement((volatile LONG*)ptr)
|
2014-05-13 09:26:20 +00:00
|
|
|
#define SLEEP() Sleep(0)
|
|
|
|
|
2014-05-05 05:54:39 +00:00
|
|
|
|
|
|
|
#endif //__GNUC__
|
|
|
|
|
|
|
|
#endif //THREADS_H_
|