00001 /* 00002 Copyright (C) 2003-2004 Douglas Thain and the University of Wisconsin 00003 Copyright (C) 2005- The University of Notre Dame 00004 This software is distributed under the GNU General Public License. 00005 See the file COPYING for details. 00006 */ 00007 00008 #ifndef SLEEPTOOLS_H 00009 #define SLEEPTOOLS_H 00010 00011 #include <time.h> 00012 00022 void sleep_until(time_t stoptime); 00023 00027 void sleep_for(time_t interval); 00028 00029 #endif