Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygentimercmp.h
Go to the documentation of this file.
00001 #ifndef TIMERCMP_H 00002 #define TIMERCMP_H 00003 00004 #ifndef timercmp 00005 /* Taken from sys/time.h on linux. */ 00006 # define timercmp(a, b, CMP) \ 00007 (((a)->tv_sec == (b)->tv_sec) ? \ 00008 ((a)->tv_usec CMP (b)->tv_usec) : \ 00009 ((a)->tv_sec CMP (b)->tv_sec)) 00010 00011 # define timerclear(a) ((a)->tv_sec = (a)->tv_usec = 0) 00012 #endif 00013 00014 #endif//TIMERCMP_H Generated on Sat May 26 2012 04:32:16 for ReactOS by
1.7.6.1
|