add OPENGL_CFLAGS to CPPFLAGS for OpenBSD
[gnash.git] / libbase / getclocktime.hpp
blobad76826dbba9fc88791551dc3f20136b7bc04302
1 //
2 // Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
3 //
4 // This program is free software; you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation; either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 #ifndef GETCLOCKTIMER_HPP
20 #define GETCLOCKTIMER_HPP 1
22 #ifdef HAVE_CONFIG_H
23 #include "gnashconfig.h"
24 #endif
26 #include <ctime>
28 // TODO: why doesn't OS2 define HAVE_CLOCK_GETTIME?
29 #if !defined(HAVE_CLOCK_GETTIME) && !defined(__OS2__)
31 #include <sys/time.h>
33 #ifdef HAVE_PTHREADS
34 #include <pthread.h>
35 #endif
37 #if defined WIN32 && !defined(HAVE_STRUCT_TIMESPEC)
38 struct timespec {
39 time_t tv_sec; /* seconds */
40 long tv_nsec; /* nanoseconds */
42 #endif
44 #define CLOCK_REALTIME 0 /* Dummy */
46 static int clock_gettime(int, struct timespec *tp) {
48 struct timeval now;
49 int ret = gettimeofday(&now, NULL);
51 if (ret != 0)
52 return ret;
54 tp->tv_sec = now.tv_sec;
55 tp->tv_nsec = now.tv_usec * 1000;
56 return 0;
59 #endif
60 #endif