你用g_timeout_add()
org_source_attach()
吗?
g_timeout_add()
并且g_timeout_add_full()
不允许您指定要添加的主要上下文。它总是使用默认的主上下文。如果你没有在你的主线程中使用默认的主上下文,那么在你的process thread
. 您可以在描述中阅读它。
GMainContext 只能在单个线程中运行
默认主上下文由许多函数隐式创建,包括g_main_context_default()
. 所以请确保你没有在你的主线程中使用它。
g_source_attach()
如果您决定这样做,您可以使用将超时源添加到您自己的主要上下文中。没有可用于指定主要上下文的超时函数。所以,只能自己做。
以下代码与以下代码基本相同:g_timeout_add_full(G_PRIORITY_DEFAULT, 100, func, l, notify);
#include <glib.h>
void notify(gpointer data)
{
g_main_loop_quit((GMainLoop *)data);
}
gboolean func(gpointer data)
{
static gint i = 0;
g_message("%d", i++);
return (i < 10) ? TRUE : FALSE;
}
gpointer thread(gpointer data)
{
GMainContext *c;
GMainContext *d;
GMainLoop *l;
GSource *s;
c = g_main_context_new();
d = g_main_context_default();
g_message("local: %p", c);
g_message("default: %p", d);
#if 1
l = g_main_loop_new(c, FALSE);
s = g_timeout_source_new(100);
g_source_set_callback(s, func, l, notify);
g_source_attach(s, c);
g_source_unref(s);
#else
l = g_main_loop_new(d, FALSE);
g_timeout_add_full(G_PRIORITY_DEFAULT, 100, func, l, notify);
#endif
g_main_loop_run(l);
g_message("done");
return NULL;
}
int main(int argc, char *argv[])
{
GError *error = NULL;
GThread *t;
g_thread_init(NULL);
t = g_thread_create(thread, NULL, TRUE, &error);
g_thread_join(t);
return 0;
}