Cloned SEACAS for EXODUS library with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1000 B

2 years ago
/*
* Copyright(C) 1999-2021 National Technology & Engineering Solutions
* of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
* NTESS, the U.S. Government retains certain rights in this software.
*
* See packages/seacas/LICENSE for details
*/
#include <time.h>
#if defined(__unix__) || defined(__unix) || defined(unix) || \
(defined(__APPLE__) && defined(__MACH__))
#include <sys/resource.h>
#endif
double seconds(void)
{
double curtime;
#ifdef RUSAGE_SELF
/* This timer is faster and more robust (if it exists). */
struct rusage rusage;
int getrusage(int, struct rusage *);
getrusage(RUSAGE_SELF, &rusage);
curtime = ((rusage.ru_utime.tv_sec + rusage.ru_stime.tv_sec) +
1.0e-6 * (rusage.ru_utime.tv_usec + rusage.ru_stime.tv_usec));
#else
/* ANSI timer, but lower resolution & wraps around after ~36 minutes. */
curtime = clock() / ((double)CLOCKS_PER_SEC);
#endif
return (curtime);
}