1 Star 0 Fork 8

Mountain丶/Xipkpublib_Update

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
UseTimeLog.c 794 Bytes
一键复制 编辑 原始数据 按行查看 历史
suitianmou 提交于 2016-07-12 20:56 . 20160712
/*******************************************************
* 公 司: 大连同方软银科技有限公司
* 程 序 名: UseTimeLog.c
* 程序功能: 在log中,打印当前文件 当前行的时间(精确到ns)
* 输入参数:
* 输出参数:
* Hour 小时
* Minute 分
* Second 秒
Nsec 纳秒
* 返 回 值:
* 作 者:
* 开发日期:
* 修 改 人:
* 修改日期:
*******************************************************/
#include "kernel/syspub.h"
#include <sys/time.h>
int UseTimeLog(char *file, int line )
{
int hour=0;
int min=0;
int sec=0;
struct timespec ts;
clock_gettime(CLOCK_MONOTONIC, &ts);
GetSysTime(&hour, &min, &sec);
AppLog( file, line, "D","当前时间(纳秒):[%02d:%02d:%02d]启动秒数[%ld.%09ld]", hour, min, sec, ts.tv_sec, ts.tv_nsec);
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/OnePieceMountain/Xipkpublib_Update.git
git@gitee.com:OnePieceMountain/Xipkpublib_Update.git
OnePieceMountain
Xipkpublib_Update
Xipkpublib_Update
master

搜索帮助