Main Page | Modules | Alphabetical List | Data Structures | File List | Data Fields | Globals | Related Pages

tm.h

Go to the documentation of this file.
00001 /*
00002  * $Id: tm.h,v 1.6 2005/09/16 21:51:11 rmanfredi Exp $
00003  *
00004  * Copyright (c) 2003-2005, Raphael Manfredi
00005  *
00006  *----------------------------------------------------------------------
00007  * This file is part of gtk-gnutella.
00008  *
00009  *  gtk-gnutella is free software; you can redistribute it and/or modify
00010  *  it under the terms of the GNU General Public License as published by
00011  *  the Free Software Foundation; either version 2 of the License, or
00012  *  (at your option) any later version.
00013  *
00014  *  gtk-gnutella is distributed in the hope that it will be useful,
00015  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00016  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00017  *  GNU General Public License for more details.
00018  *
00019  *  You should have received a copy of the GNU General Public License
00020  *  along with gtk-gnutella; if not, write to the Free Software
00021  *  Foundation, Inc.:
00022  *      59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00023  *----------------------------------------------------------------------
00024  */
00025 
00036 #ifndef _tm_h_
00037 #define _tm_h_
00038 
00039 #include "common.h"
00040 
00046 #define tm_zero(t)  ((t)->tv_sec == 0 && (t)->tv_usec == 0)
00047 
00053 #define tm2f(t)     ((double) (t)->tv_sec + (t)->tv_usec / 1000000.0)
00054 
00060 #define tm2ms(t)    ((t)->tv_sec * 1000 + (t)->tv_usec / 1000)
00061 
00062 typedef GTimeVal tm_t;
00063 
00064 void f2tm(double t, tm_t *tm);
00065 void tm_elapsed(tm_t *elapsed, const tm_t *last, const tm_t *old);
00066 void tm_sub(tm_t *tm, const tm_t *dec);
00067 void tm_add(tm_t *tm, const tm_t *inc);
00068 int tm_cmp(const tm_t *a, const tm_t *b);
00069 
00070 void tm_now(tm_t *tm);
00071 void tm_now_exact(tm_t *tm);
00072 time_t tm_time(void);
00073 time_t tm_time_exact(void);
00074 gdouble tm_cputime(gdouble *user, gdouble *sys);
00075 
00076 guint tm_hash(gconstpointer key);
00077 gint tm_equal(gconstpointer a, gconstpointer b);
00078 
00079 #endif /* _tm_h_ */

Generated on Sun Feb 12 10:49:57 2006 for Gtk-Gnutella by doxygen 1.3.6