mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-07-18 03:17:04 +00:00
27 lines
910 B
C
27 lines
910 B
C
/*****************************************************************************
|
|
* CVS File Information :
|
|
* $RCSfile$
|
|
* Author: patmiller $
|
|
* Date: 2007/06/11 14:12:54 $
|
|
* Revision: 1.2 $
|
|
****************************************************************************/
|
|
/****************************************************************************/
|
|
/* FILE *********************** PMPI_Wtick.c ****************************/
|
|
/****************************************************************************/
|
|
/* Author : Lisa Alano July 24 2002 */
|
|
/* Copyright (c) 2002 University of California Regents */
|
|
/****************************************************************************/
|
|
|
|
#include "mpi.h"
|
|
|
|
/*EDIT LATER ... ASK PAT*/
|
|
#ifndef _SC_CLK_TCK
|
|
#define _SC_CLK_TCK 60
|
|
#endif
|
|
|
|
double PMPI_Wtick(void)
|
|
{
|
|
return 1.0/(_SC_CLK_TCK);
|
|
}
|
|
|