我尝试使用sys / times.h中包含的时间函数来测量sys,usr和实时。
但是每当我试图检索实时时,我都会得到0。
根据this文件:
times()返回的数据仅在启用时间记帐时有效。 这是默认设置,但在使用buildqnx实用程序构建操作系统映像时,可以禁用它以节省时间和内存。禁用时,struct tms成员将始终为零。
我无法找到任何方法来检查我的Ubuntu是否已禁用它。在程序的某些位置获取时间值的其他方法是什么?
谢谢!
答案 0 :(得分:1)
您可以通过多次访问手册页找到所需内容,特别是使用3作为C / API文档:
man 3 times
此外,您还可以在那里找到示例代码。
答案 1 :(得分:1)
您没有确定您使用的是哪个版本的Ubuntu,但此代码(使用选项-std=c11
或-std=c99
编译)表明{J}运行时,times()
在Ubuntu 14.04 LTS上运行正常在Mac OS X 10.10.2 Yosemite上的VM中。
档案
ubuntu.times.c
:
#include <stdio.h>
#include <stdlib.h>
#include <sys/times.h>
#include <sys/wait.h>
#include <unistd.h>
#define PRI_clock_t "lu" /* Correct on Mac OS X */
static void report_times(void)
{
struct tms t;
clock_t t0 = times(&t);
printf("%" PRI_clock_t ": %" PRI_clock_t " %" PRI_clock_t "; %" PRI_clock_t " %" PRI_clock_t "\n",
t0, t.tms_utime, t.tms_stime, t.tms_cutime, t.tms_cstime);
}
static char *cmd0[] = { "sleep", "1", (char *)0 };
static char *cmd1[] = { "dd", "if=/dev/zero", "of=/dev/null", "bs=1024", "count=1000000", (char *)0 };
static void exec_cmd(char **args)
{
for (int i = 0; i < 10; i++)
{
if (fork() == 0)
{
execvp(args[0], args);
exit(1);
}
int status;
int corpse = wait(&status);
printf("PID %d: 0x%.4X\n", corpse, status);
}
report_times();
}
int main(void)
{
report_times();
FILE *fp = fopen("/dev/null", "w");
for (int i = 0; i < 1000000; i++)
{
fprintf(fp, "Row %d\n", i);
}
report_times();
exec_cmd(cmd0);
exec_cmd(cmd1);
return 0;
}
Ubuntu上的示例输出:
$ ./ubuntu.times
1718230233: 0 0; 0 0
1718230242: 7 0; 0 0
PID 67448: 0x0000
PID 67449: 0x0000
PID 67450: 0x0000
PID 67451: 0x0000
PID 67452: 0x0000
PID 67453: 0x0000
PID 67455: 0x0000
PID 67456: 0x0000
PID 67457: 0x0000
PID 67458: 0x0000
1718231249: 8 0; 0 1
1000000+0 records in
1000000+0 records out
1024000000 bytes (1.0 GB) copied, 0.295776 s, 3.5 GB/s
PID 67459: 0x0000
1000000+0 records in
1000000+0 records out
1024000000 bytes (1.0 GB) copied, 0.291788 s, 3.5 GB/s
PID 67460: 0x0000
1000000+0 records in
1000000+0 records out
1024000000 bytes (1.0 GB) copied, 0.303734 s, 3.4 GB/s
PID 67461: 0x0000
1000000+0 records in
1000000+0 records out
1024000000 bytes (1.0 GB) copied, 0.289385 s, 3.5 GB/s
PID 67462: 0x0000
1000000+0 records in
1000000+0 records out
1024000000 bytes (1.0 GB) copied, 0.292731 s, 3.5 GB/s
PID 67463: 0x0000
1000000+0 records in
1000000+0 records out
1024000000 bytes (1.0 GB) copied, 0.290734 s, 3.5 GB/s
PID 67464: 0x0000
1000000+0 records in
1000000+0 records out
1024000000 bytes (1.0 GB) copied, 0.292078 s, 3.5 GB/s
PID 67465: 0x0000
1000000+0 records in
1000000+0 records out
1024000000 bytes (1.0 GB) copied, 0.289427 s, 3.5 GB/s
PID 67466: 0x0000
1000000+0 records in
1000000+0 records out
1024000000 bytes (1.0 GB) copied, 0.29415 s, 3.5 GB/s
PID 67467: 0x0000
1000000+0 records in
1000000+0 records out
1024000000 bytes (1.0 GB) copied, 0.295052 s, 3.5 GB/s
PID 67468: 0x0000
1718231548: 8 0; 56 234
$
代码中的错误处理很少到不存在;它不应该被视为好的风格。