当前位置: 技术问答>linux和unix
关于linux模块编程获取系统时间的问题
来源: 互联网 发布时间:2016-06-01
本文导语: 我开发了一个linux内核模块,想要获取系统时间,我用include time_t now; struct tm *timenow; time(&now); timenow = localtime(&now); printf("Local time is %sn",asctime(timenow)); 提示 redefinition of struct timespec redefinition of struc...
我开发了一个linux内核模块,想要获取系统时间,我用include
time_t now;
struct tm *timenow;
time(&now);
timenow = localtime(&now);
printf("Local time is %sn",asctime(timenow));
提示
redefinition of struct timespec
redefinition of struct itimerspec
time_t now;
struct tm *timenow;
time(&now);
timenow = localtime(&now);
printf("Local time is %sn",asctime(timenow));
提示
redefinition of struct timespec
redefinition of struct itimerspec
|
你给我发消息了?我收到提示,但是看不到内容哦。CSDN做的真是。
do_gettimeofday(&tv1);返回的却是是描述,你需要日期可以转化就是,网上办法很多。我随便给你贴一个哦。
asctime(将时间和日期以字符串格式表示)
相关函数 time,ctime,gmtime,localtime
表头文件 #include
定义函数 char * asctime(const struct tm * timeptr);
函数说明 asctime()将参数timeptr所指的tm结构中的信息转换成真实世界所使用的时间日期表示方法,然后将结果以字符串形态返回。此函数已经由时区转换成当地时间,字符串格式为:“Wed Jun 30 21:49:08 1993n”
返回值 若再调用相关的时间日期函数,此字符串可能会被破坏。此函数与ctime不同处在于传入的参数是不同的结构。
附加说明 返回一字符串表示目前当地的时间日期。
范例 #include
main()
{
time_t timep;
time (&timep);
printf(“%s”,asctime(gmtime(&timep)));
}
http://unix-cd.com/unixcd12/article_1400.html
do_gettimeofday(&tv1);返回的却是是描述,你需要日期可以转化就是,网上办法很多。我随便给你贴一个哦。
asctime(将时间和日期以字符串格式表示)
相关函数 time,ctime,gmtime,localtime
表头文件 #include
定义函数 char * asctime(const struct tm * timeptr);
函数说明 asctime()将参数timeptr所指的tm结构中的信息转换成真实世界所使用的时间日期表示方法,然后将结果以字符串形态返回。此函数已经由时区转换成当地时间,字符串格式为:“Wed Jun 30 21:49:08 1993n”
返回值 若再调用相关的时间日期函数,此字符串可能会被破坏。此函数与ctime不同处在于传入的参数是不同的结构。
附加说明 返回一字符串表示目前当地的时间日期。
范例 #include
main()
{
time_t timep;
time (&timep);
printf(“%s”,asctime(gmtime(&timep)));
}
http://unix-cd.com/unixcd12/article_1400.html