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/>.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-05-19 10:56:27 +00:00
|
|
|
#include "global.h"
|
|
|
|
|
2014-05-05 05:54:39 +00:00
|
|
|
#include <pthread.h>
|
|
|
|
|
2014-11-12 14:31:55 +00:00
|
|
|
#if defined(__GNUC__) && !defined(__MINGW32__)
|
2014-05-14 14:50:27 +00:00
|
|
|
#include <unistd.h>
|
2014-05-16 08:15:05 +00:00
|
|
|
#include <time.h>
|
2014-06-16 08:18:11 +00:00
|
|
|
|
2014-05-16 08:15:05 +00:00
|
|
|
#define CLOCK_T struct timespec
|
2014-10-13 13:22:05 +00:00
|
|
|
|
|
|
|
#ifdef __MACH__
|
|
|
|
// Workaround Mac OS not having clock_gettime.
|
2015-01-13 14:06:55 +00:00
|
|
|
#include <mach/clock.h>
|
|
|
|
#include <mach/mach.h>
|
|
|
|
#define GET_TIME(clock_t) { \
|
|
|
|
clock_serv_t cclock; \
|
|
|
|
mach_timespec_t mts; \
|
|
|
|
host_get_clock_service(mach_host_self(), SYSTEM_CLOCK, &cclock); \
|
|
|
|
clock_get_time(cclock, &mts); \
|
|
|
|
mach_port_deallocate(mach_task_self(), cclock); \
|
|
|
|
(clock_t)->tv_sec = mts.tv_sec; \
|
|
|
|
(clock_t)->tv_nsec = mts.tv_nsec; \
|
|
|
|
}
|
2014-10-13 13:22:05 +00:00
|
|
|
#else
|
2014-05-16 08:15:05 +00:00
|
|
|
#define GET_TIME(clock_t) clock_gettime(CLOCK_MONOTONIC, (clock_t))
|
2014-10-13 13:22:05 +00:00
|
|
|
#endif
|
|
|
|
|
2014-05-16 08:15:05 +00:00
|
|
|
#define CLOCK_T_AS_DOUBLE(ts) ((double)((ts).tv_sec) + (double)((ts).tv_nsec) / (double)1000000000L)
|
|
|
|
#define CLOCK_T_DIFF(start, stop) ((double)((stop).tv_sec - (start).tv_sec) + (double)((stop).tv_nsec - (start).tv_nsec) / (double)1000000000L)
|
|
|
|
|
2014-05-05 05:54:39 +00:00
|
|
|
#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-16 09:16:22 +00:00
|
|
|
#define CLOCK_T struct _FILETIME
|
|
|
|
#define GET_TIME(clock_t) GetSystemTimeAsFileTime(clock_t)
|
|
|
|
// _FILETIME has 32bit low and high part of 64bit 100ns resolution timestamp (since 12:00 AM January 1, 1601)
|
|
|
|
#define CLOCK_T_AS_DOUBLE(ts) ((double)(((uint64_t)(ts).dwHighDateTime)<<32 | (uint64_t)(ts).dwLowDateTime) / (double)10000000L)
|
|
|
|
#define CLOCK_T_DIFF(start, stop) ((double)((((uint64_t)(stop).dwHighDateTime)<<32 | (uint64_t)(stop).dwLowDateTime) - \
|
|
|
|
(((uint64_t)(start).dwHighDateTime)<<32 | (uint64_t)(start).dwLowDateTime)) / (double)10000000L)
|
2014-06-16 08:18:11 +00:00
|
|
|
|
2014-05-16 09:16:22 +00:00
|
|
|
|
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-06-13 09:01:03 +00:00
|
|
|
// Sleep(0) results in bad performance on Windows for some reason,
|
|
|
|
// As a work around sleep for 10ms.
|
|
|
|
#define SLEEP() Sleep(10)
|
2014-05-13 09:26:20 +00:00
|
|
|
|
2014-05-05 05:54:39 +00:00
|
|
|
#endif //__GNUC__
|
|
|
|
|
|
|
|
#endif //THREADS_H_
|