如何使用 gettimeofday 来测量时间的流逝?

发布于 2025-01-11 03:58:32 字数 736 浏览 0 评论 0原文

我只被允许使用这个函数,我正在尝试找出一种方法来计算经过的时间,有什么想法吗?我很困惑..

# include <sys/types.h>
# include <sys/time.h>
# include <stdio.h>
# include <unistd.h>


int main(int argc, char* argv[])
{
    struct timeval now;
    struct timeval start;
    int t_now;
    int t_stop;
    int t_start;
    int i;

    gettimeofday(&start, NULL);
    t_start = start.tv_usec / 1000;
    t_stop = t_start + 200;

    while (42)
    {
        usleep(2000);
        gettimeofday(&now, NULL);
        t_now = now.tv_usec / 1000;
        if (t_now - t_stop > -1)
        {
            break;
        }
        printf ("%d\n", t_now);
        usleep(2000);
    }
    return 0;
}

我正在这样做,但它会继续循环,并且不会停止..

I'm only allowed to use this function and I'm trying to figure out a way to calculate time elapsed, any ideas? I'm confused..

# include <sys/types.h>
# include <sys/time.h>
# include <stdio.h>
# include <unistd.h>


int main(int argc, char* argv[])
{
    struct timeval now;
    struct timeval start;
    int t_now;
    int t_stop;
    int t_start;
    int i;

    gettimeofday(&start, NULL);
    t_start = start.tv_usec / 1000;
    t_stop = t_start + 200;

    while (42)
    {
        usleep(2000);
        gettimeofday(&now, NULL);
        t_now = now.tv_usec / 1000;
        if (t_now - t_stop > -1)
        {
            break;
        }
        printf ("%d\n", t_now);
        usleep(2000);
    }
    return 0;
}

I was doing this but it will keep looping, and won't stop..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风轻花落早 2025-01-18 03:58:32

t_start = start.tv_usec / 1000;

没有达到您的预期。 tv_usec 只有几分之一秒,您需要

long long msec = (start.tv_sec * 1000) + start.tv_usec/1000;

获取总毫秒

this

t_start = start.tv_usec / 1000;

isnt doing what you expect. tv_usec only has fractions of a second, you need

long long msec = (start.tv_sec * 1000) + start.tv_usec/1000;

to get total msec

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文