sprint 1-alpha
sprint/thread/sleep.h
Go to the documentation of this file.
00001 #ifndef _SPRINT_SLEEP_H
00002 #define _SPRINT_SLEEP_H
00003 
00008   namespace sprint {
00009             #ifdef WIN32
00010 
00011             inline void msleep(int msec)
00012                    {
00013                         ::Sleep(msec);
00014                    }
00016             inline void sleep(int sec)
00017                    {
00018                         ::Sleep(sec*1000);
00019                    }
00021             inline void usleep(int usec)
00022                    {
00023                         ::Sleep(usec/1000);
00024                    }
00025             #endif
00026             
00027             }
00028 
00029 
00030 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines