无法使用 struct tms 编译代码
#if defined(HAVE_TIMES)
#include <unistd.h>
static double cycles_diff(struct tms *a,struct tms *b)
{
clock_t aa = a->tms_utime +
a->tms_stime +
a->tms_cutime +
a->tms_cstime;
clock_t bb = b->tmstms_utime
+ b->tms_stime
+ b->tms_cutime
+ b->tms_cstime;
return (aa-bb)/(double)sysconf(_SC_CLK_TCK);
}
}
这会产生错误
struc tms 的类型声明不完整
和
sysconf 未声明
#if defined(HAVE_TIMES)
#include <unistd.h>
static double cycles_diff(struct tms *a,struct tms *b)
{
clock_t aa = a->tms_utime +
a->tms_stime +
a->tms_cutime +
a->tms_cstime;
clock_t bb = b->tmstms_utime
+ b->tms_stime
+ b->tms_cutime
+ b->tms_cstime;
return (aa-bb)/(double)sysconf(_SC_CLK_TCK);
}
}
This gives errors
incomplete type declaration of struc tms
and
sysconf was not declared
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据手册,您需要
#包括
According to the manual you need to
#include <sys/times.h>