/****************************************************************************** * This file is part of a software distribution, which is furnished under the * * terms of a license. Use of this software by any means is subject to this * * license and signifies the acceptance of the licensing terms stated * * therein. Please see the file LICENSE in the top-level directory of this * * software distribution for detailed copyright disclaimers and licensing * * terms. * ****************************************************************************** * Copryight (c) by Andreas S. Wetzel - All rights reserved. * ******************************************************************************/ /* $Id: microtime.h,v 1.2 2001/03/19 14:54:03 mickey Exp $ */ #ifndef __MICROTIME_H__ #define __MICROTIME_H__ #define NUMSTATS 6 typedef struct { struct timeval startmark; struct timeval endmark; struct timeval statvalue[NUMSTATS]; u_short statindex; } TMSTAT; typedef struct { struct timeval _min; struct timeval _avg; struct timeval _max; } TMREPORT; #endif /* __MICROTIME_H__ */