S2kit  1.1
Toolkit for working with functions defined on the sphere
csecond.c
Go to the documentation of this file.
1 
7 #include "csecond.h"
8 
9 #include <limits.h>
10 #include <stdio.h>
11 #include <sys/param.h>
12 #include <sys/times.h>
13 #include <sys/types.h>
14 #include <time.h>
15 
16 #ifdef CLK_TCK
17 #define DIVIDER CLK_TCK
18 #else
19 #define DIVIDER HZ // for old BSD systems
20 #endif
21 
22 // define this to return wallclock instead of cpu time
23 // #define WALLCLOCK
24 
25 #if (defined CRAY)
26 double CSECOND() {
27 #elif (defined T3D)
28 double CSECOND() {
29 #elif (defined IBM)
30 double csecond() {
31 #else // works for SUN, LINUX, DECALPHA, SGI
32 double csecond() {
33 #endif
34  static int firstcall = 1;
35  static struct tms buf0; // times structure
36  static clock_t rv0;
37 
38  if (firstcall) {
39  firstcall = 0;
40  rv0 = times(&buf0);
41  }
42 
43  struct tms buf;
44  clock_t rv = times(&buf);
45 #ifdef WALLCLOCK
46  return ((double)(rv - rv0) / (double)DIVIDER);
47 #else
48  return (
49  (double)(
50  (buf.tms_utime + buf.tms_stime + buf.tms_cutime + buf.tms_cstime) -
51  (buf0.tms_utime + buf0.tms_stime + buf0.tms_cutime + buf0.tms_cstime)
52  ) / (double)DIVIDER
53  );
54 #endif
55 }
DIVIDER
#define DIVIDER
Definition: csecond.c:19
csecond.h
csecond
double csecond()
Definition: csecond.c:32