GLib 中的可变超时

发布于 2024-09-03 21:01:59 字数 107 浏览 2 评论 0原文

我需要修改 GLib 执行时的超时间隔。这可能吗?我查看了源代码,对我来说似乎是可能的,但需要使用 GLib 内部的一些非公共函数。我应该重新实现 GTimeoutSource 还是有办法做到这一点?

I need to modify a GLib's time-out interval while it is in execution. Is that possible? I took a look to the source code and it seems possible to me, but is required use some non-public functions from GLib internals. Should I reimplement GTimeoutSource or there are a way to do it?

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

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

发布评论

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

评论(1

天涯沦落人 2024-09-10 21:01:59

在超时函数中,您可以使用新的超时间隔重新添加该函数,然后返回 FALSE 以删除旧间隔的超时:

gboolean 
my_timeout_function(gpointer data)
{
    // do stuff
    // ...

    if(need_to_change_interval)
    {
        g_timeout_add(new_interval, (GSourceFunc)my_timeout_function, data);
        return FALSE;
    }
    return TRUE;
}

In your timeout function, you could re-add the function with the new timeout interval and then return FALSE to remove the timeout with the old interval:

gboolean 
my_timeout_function(gpointer data)
{
    // do stuff
    // ...

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