]> rtime.felk.cvut.cz Git - frescor/frsh-include.git/blob - timespec_operations.h
Encapsulating multiline #defines in do { } while(0) structures as
[frescor/frsh-include.git] / timespec_operations.h
1 // -----------------------------------------------------------------------
2 //  Copyright (C) 2006 - 2007 FRESCOR consortium partners:
3 //
4 //    Universidad de Cantabria,              SPAIN
5 //    University of York,                    UK
6 //    Scuola Superiore Sant'Anna,            ITALY
7 //    Kaiserslautern University,             GERMANY
8 //    Univ. Politécnica  Valencia,           SPAIN
9 //    Czech Technical University in Prague,  CZECH REPUBLIC
10 //    ENEA                                   SWEDEN
11 //    Thales Communication S.A.              FRANCE
12 //    Visual Tools S.A.                      SPAIN
13 //    Rapita Systems Ltd                     UK
14 //    Evidence                               ITALY
15 //    
16 //    See http://www.frescor.org for a link to partners' websites
17 //
18 //           FRESCOR project (FP6/2005/IST/5-034026) is funded
19 //        in part by the European Union Sixth Framework Programme
20 //        The European Union is not liable of any use that may be
21 //        made of this code.
22 //
23 //
24 //  based on previous work (FSF) done in the FIRST project
25 //                       
26 //   Copyright (C) 2005  Mälardalen University, SWEDEN
27 //                       Scuola Superiore S.Anna, ITALY
28 //                       Universidad de Cantabria, SPAIN
29 //                       University of York, UK
30 //
31 //   FSF API web pages: http://marte.unican.es/fsf/docs
32 //                      http://shark.sssup.it/contrib/first/docs/
33 //
34 //  This file is part of FRSH API
35 //
36 //  FRSH API is free software; you can  redistribute it and/or  modify
37 //  it under the terms of  the GNU General Public License as published by
38 //  the Free Software Foundation;  either  version 2, or (at  your option)
39 //  any later version.
40 //
41 //  FRSH API  is distributed  in  the hope  that  it  will  be useful,  but
42 //  WITHOUT  ANY  WARRANTY;     without  even the   implied   warranty  of
43 //  MERCHANTABILITY  or  FITNESS FOR  A  PARTICULAR PURPOSE. See  the  GNU
44 //  General Public License for more details.
45 //
46 //  You should have  received a  copy of  the  GNU  General Public License
47 //  distributed  with  FRSH API;  see file COPYING.   If not,  write to the
48 //  Free Software  Foundation,  59 Temple Place  -  Suite 330,  Boston, MA
49 //  02111-1307, USA.
50 //
51 //  As a special exception, if you include this header file into source
52 //  files to be compiled, this header file does not by itself cause
53 //  the resulting executable to be covered by the GNU General Public
54 //  License.  This exception does not however invalidate any other
55 //  reasons why the executable file might be covered by the GNU General
56 //  Public License.
57 // -----------------------------------------------------------------------
58 /*-----------------------------------------------------------------------
59  *                                                         V1.0  Dec 2001
60  *
61  *                    't i m e s p e c _ o p e r a t i o n s'
62  *
63  *                                      H
64  *
65  * File 'timespec_operations.h'                                   by MAR.
66  *                           (july 2002)  transformed into macros by Jul.
67  * Some basic operations with the type 'timespec'.
68  *
69  * ----------------------------------------------------------------------
70  *  Copyright (C) 2001   Universidad de Cantabria, SPAIN
71  *
72  *  Authors: Mario Aldea Rivas          aldeam@ctr.unican.es
73  *           Michael Gonzalez Harbour      mgh@ctr.unican.es
74  *
75  * MaRTE OS  is free software; you can  redistribute it and/or  modify it
76  * under the terms of the GNU General Public License  as published by the
77  * Free Software Foundation;  either  version 2, or (at  your option) any
78  * later version.
79  *
80  * MaRTE OS  is distributed  in the  hope  that  it will be   useful, but
81  * WITHOUT  ANY  WARRANTY;     without  even the   implied   warranty  of
82  * MERCHANTABILITY  or  FITNESS FOR A  PARTICULAR PURPOSE.    See the GNU
83  * General Public License for more details.
84  *
85  * You should have received  a  copy of  the  GNU General Public  License
86  * distributed with MaRTE  OS;  see file COPYING.   If not,  write to the
87  * Free Software  Foundation,  59 Temple Place  -  Suite 330,  Boston, MA
88  * 02111-1307, USA.
89  *
90  * As a  special exception, if you  link this  unit  with other  files to
91  * produce an   executable,   this unit  does  not  by  itself cause  the
92  * resulting executable to be covered by the  GNU General Public License.
93  * This exception does  not however invalidate  any other reasons why the
94  * executable file might be covered by the GNU Public License.
95  *
96  *---------------------------------------------------------------------------*/
97
98 #ifndef _MARTE_MISC_TIMESPEC_OPERATIONS_H_
99 #define _MARTE_MISC_TIMESPEC_OPERATIONS_H_
100
101 /**
102  * @file timespec_operations.h
103  **/
104
105 #include <time.h>
106
107 #define smaller_timespec(t1, t2) \
108  ( \
109   (t1)->tv_sec < (t2)->tv_sec || ((t1)->tv_sec == (t2)->tv_sec &&   \
110                                      (t1)->tv_nsec < (t2)->tv_nsec) \
111  )
112
113 #define smaller_or_equal_timespec(t1, t2) \
114  ( \
115   (t1)->tv_sec < (t2)->tv_sec || ((t1)->tv_sec == (t2)->tv_sec &&    \
116                                      (t1)->tv_nsec <= (t2)->tv_nsec) \
117  )
118
119 #define incr_timespec(t1, t2) \
120 do { \
121   (t1)->tv_sec += (t2)->tv_sec; \
122   (t1)->tv_nsec += (t2)->tv_nsec; \
123   if ((t1)->tv_nsec >= 1000000000) { \
124     (t1)->tv_sec ++; \
125     (t1)->tv_nsec -= 1000000000; \
126   } \
127 } while (0)
128
129 #define decr_timespec(t1, t2) \
130 do { \
131   if ((t1)->tv_nsec < (t2)->tv_nsec) { \
132     (t1)->tv_sec -= (t2)->tv_sec + 1; \
133     (t1)->tv_nsec = (t1)->tv_nsec + 1000000000 - (t2)->tv_nsec; \
134   } else { \
135     (t1)->tv_sec -= (t2)->tv_sec; \
136     (t1)->tv_nsec -= (t2)->tv_nsec; \
137   } \
138 } while (0)
139
140
141 #define  add_timespec( sum , t1 , t2 ) \
142 do { \
143   (sum)->tv_sec  = (t1)->tv_sec  + (t2)->tv_sec; \
144   (sum)->tv_nsec = (t1)->tv_nsec + (t2)->tv_nsec; \
145   if ((sum)->tv_nsec >= 1000000000) { \
146     (sum)->tv_sec ++; \
147     (sum)->tv_nsec -= 1000000000; \
148   } \
149 } while (0)
150
151 #define float_to_timespec( f1 , t1 ) \
152 ( \
153   (t1)->tv_sec = (int)(f1), \
154   (t1)->tv_nsec = (int)(((f1)-(float)((t1)->tv_sec))*1000000000.0), \
155   (t1) \
156 )
157
158 #define float_to_timespec_value(f1, t1) \
159 ( \
160   (t1).tv_sec = (int)(f1), \
161   (t1).tv_nsec = (int)(((f1)-(float)((t1).tv_sec))*1000000000.0), \
162   (t1) \
163 )
164
165 #endif /* _MARTE_MISC_TIMESPEC_OPERATIONS_H_ */