UNIX 上的延时函数有好几种

一、 基础知识
1、时间类型。Linux下常用的时间类型有4个:time_t,struct timeval,struct timespec,struct tm。
(1)time_t是一个长整型,一般用来表示用1970年以来的秒数。
(2)Struct timeval有两个成员,一个是秒,一个是微妙。

C代码
struct timeval {   
   long tv_sec;        /**//* seconds */  
   long tv_usec;  /**//* microseconds */  

 struct timeval {
    long tv_sec;        /**//* seconds */
    long tv_usec;  /**//* microseconds */
};

(3)struct timespec有两个成员,一个是秒,一个是纳秒。

C代码
struct timespec{   
    time_t  tv_sec;         /**//* seconds */  
    long    tv_nsec;        /**//* nanoseconds */  
}; 
struct timespec{
    time_t  tv_sec;         /**//* seconds */
    long    tv_nsec;        /**//* nanoseconds */
};

(4)struct tm是直观意义上的时间表示方法:

C代码
struct tm {   
    int     tm_sec;         /**//* seconds */  
    int     tm_min;         /**//* minutes */  
    int     tm_hour;        /**//* hours */  
    int     tm_mday;        /**//* day of the month */  
    int     tm_mon;         /**//* month */  
    int     tm_year;        /**//* year */  
    int     tm_wday;        /**//* day of the week */  
    int     tm_yday;        /**//* day in the year */  
    int     tm_isdst;       /**//* daylight saving time */  
}; 
struct tm {
    int     tm_sec;         /**//* seconds */
    int     tm_min;         /**//* minutes */
    int     tm_hour;        /**//* hours */
    int     tm_mday;        /**//* day of the month */
    int     tm_mon;         /**//* month */
    int     tm_year;        /**//* year */
    int     tm_wday;        /**//* day of the week */
    int     tm_yday;        /**//* day in the year */
    int     tm_isdst;       /**//* daylight saving time */
};

2、 时间操作
(1) 时间格式间的转换函数
主要是 time_t、struct tm、时间的字符串格式之间的转换。看下面的函数参数类型以及返回值类型:

C代码
char *asctime(const struct tm *tm);   
char *ctime(const time_t *timep);   
struct tm *gmtime(const time_t *timep);   
struct tm *localtime(const time_t *timep);   
time_t mktime(struct tm *tm); 
char *asctime(const struct tm *tm);
char *ctime(const time_t *timep);
struct tm *gmtime(const time_t *timep);
struct tm *localtime(const time_t *timep);
time_t mktime(struct tm *tm);

gmtime和localtime的参数以及返回值类型相同,区别是前者返回的格林威治标准时间,后者是当地时间。
(2) 获取时间函数
两个函数,获取的时间类型看原型就知道了:

C代码
time_t time(time_t *t);   
int gettimeofday(struct timeval *tv, struct timezone *tz); 
time_t time(time_t *t);
int gettimeofday(struct timeval *tv, struct timezone *tz);

前者获取time_t类型,后者获取struct timeval类型,因为类型的缘故,前者只能精确到秒,后者可以精确到微秒。


二、 延迟函数
主要的延迟函数有:sleep(),usleep(),nanosleep(),select(),pselect().

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wwpzfz.html