make the timeout remove functions remove *all* timeouts that match
for (it = loop->timers; it; it = g_slist_next(it)) {
ObMainLoopTimer *t = it->data;
- if (t->func == handler) {
+ if (t->func == handler)
+ t->del_me = TRUE;
+ }
+}
+
+void ob_main_loop_timeout_remove_data(ObMainLoop *loop,
+ GSourceFunc handler,
+ gpointer data)
+{
+ GSList *it;
+
+ for (it = loop->timers; it; it = g_slist_next(it)) {
+ ObMainLoopTimer *t = it->data;
+ if (t->func == handler && t->data == data)
t->del_me = TRUE;
- break;
- }
}
}
GDestroyNotify notify);
void ob_main_loop_timeout_remove(ObMainLoop *loop,
GSourceFunc handler);
+void ob_main_loop_timeout_remove_data(ObMainLoop *loop,
+ GSourceFunc handler,
+ gpointer data);
void ob_main_loop_run(ObMainLoop *loop);
void ob_main_loop_exit(ObMainLoop *loop);