00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00016 #ifndef _LOG4CPLUS_HELPERS_SLEEP_HEADER_
00017 #define _LOG4CPLUS_HELPERS_SLEEP_HEADER_
00018
00019 #include <log4cplus/config.h>
00020
00021
00022 namespace log4cplus {
00023 namespace helpers {
00024 LOG4CPLUS_EXPORT void sleep(unsigned long secs,
00025 unsigned long nanosecs = 0);
00026 LOG4CPLUS_EXPORT void sleepmillis(unsigned long millis);
00027 }
00028 }
00029
00030 #endif // _LOG4CPLUS_HELPERS_SLEEP_HEADER_
00031