ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

timercmp.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 doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.