HPCToolkit
usec_time.c
Go to the documentation of this file.
1 // * BeginRiceCopyright *****************************************************
2 //
3 // $HeadURL$
4 // $Id$
5 //
6 // --------------------------------------------------------------------------
7 // Part of HPCToolkit (hpctoolkit.org)
8 //
9 // Information about sources of support for research and development of
10 // HPCToolkit is at 'hpctoolkit.org' and in 'README.Acknowledgments'.
11 // --------------------------------------------------------------------------
12 //
13 // Copyright ((c)) 2002-2019, Rice University
14 // All rights reserved.
15 //
16 // Redistribution and use in source and binary forms, with or without
17 // modification, are permitted provided that the following conditions are
18 // met:
19 //
20 // * Redistributions of source code must retain the above copyright
21 // notice, this list of conditions and the following disclaimer.
22 //
23 // * Redistributions in binary form must reproduce the above copyright
24 // notice, this list of conditions and the following disclaimer in the
25 // documentation and/or other materials provided with the distribution.
26 //
27 // * Neither the name of Rice University (RICE) nor the names of its
28 // contributors may be used to endorse or promote products derived from
29 // this software without specific prior written permission.
30 //
31 // This software is provided by RICE and contributors "as is" and any
32 // express or implied warranties, including, but not limited to, the
33 // implied warranties of merchantability and fitness for a particular
34 // purpose are disclaimed. In no event shall RICE or contributors be
35 // liable for any direct, indirect, incidental, special, exemplary, or
36 // consequential damages (including, but not limited to, procurement of
37 // substitute goods or services; loss of use, data, or profits; or
38 // business interruption) however caused and on any theory of liability,
39 // whether in contract, strict liability, or tort (including negligence
40 // or otherwise) arising in any way out of the use of this software, even
41 // if advised of the possibility of such damage.
42 //
43 // ******************************************************* EndRiceCopyright *
44 
45 
46 
47 //******************************************************************************
48 //
49 // File:
50 // $HeadURL$
51 //
52 // Purpose:
53 // Implement a function that returns the time of day in microseconds as a
54 // long integer.
55 //
56 //******************************************************************************
57 
58 
59 
60 //******************************************************************************
61 // global includes
62 //******************************************************************************
63 
64 #include <assert.h>
65 #include <sys/time.h>
66 
67 
68 
69 //******************************************************************************
70 // local includes
71 //******************************************************************************
72 
73 #include "usec_time.h"
74 
75 
76 
77 //******************************************************************************
78 // macros
79 //******************************************************************************
80 
81 #define USEC_PER_SEC 1000000
82 
83 
84 
85 //******************************************************************************
86 // interface functions
87 //******************************************************************************
88 
89 // return the time of day in microseconds as a long integer
90 unsigned long
92 {
93  struct timeval tv;
94  int retval = gettimeofday(&tv, 0);
95  assert(retval == 0);
96  return tv.tv_usec + USEC_PER_SEC * tv.tv_sec;
97 }
unsigned long usec_time()
Definition: usec_time.c:91
#define USEC_PER_SEC
Definition: usec_time.c:81