#0 0x000055e632d68c7f in FU_IS_DEVICE (ptr=0x55e63330a790) at ../src/fu-device.h:31 26: #include 27: 28: G_BEGIN_DECLS 29: 30: #define FU_TYPE_DEVICE (fu_device_get_type ()) 31: G_DECLARE_DERIVABLE_TYPE (FuDevice, fu_device, FU, DEVICE, FwupdResult) 32: 33: struct _FuDeviceClass 34: { 35: FwupdResultClass parent_class; 36: }; #1 fu_plugin_device_add (plugin=0x55e6332e2280, device=0x55e63330a790) at ../src/fu-plugin.c:317 312: **/ 313: void 314: fu_plugin_device_add (FuPlugin *plugin, FuDevice *device) 315: { 316: g_return_if_fail (FU_IS_PLUGIN (plugin)); 317: g_return_if_fail (FU_IS_DEVICE (device)); 318: 319: g_debug ("emit added from %s: %s", 320: fu_plugin_get_name (plugin), 321: fu_device_get_id (device)); 322: fu_device_set_created (device, (guint64) g_get_real_time () / G_USEC_PER_SEC); #2 0x000055e632d68dbd in fu_plugin_device_add_delay_cb (user_data=0x55e633313260, user_data@entry=) at ../src/fu-plugin.c:374 369: static gboolean 370: fu_plugin_device_add_delay_cb (gpointer user_data) 371: { 372: FuPluginHelper *helper = (FuPluginHelper *) user_data; 373: g_hash_table_remove (helper->devices, helper->device); 374: fu_plugin_device_add (helper->plugin, helper->device); 375: fu_plugin_helper_free (helper); 376: return FALSE; 377: } 378: 379: /** #3 0x00007fc930941853 in g_timeout_dispatch (source=source@entry=0x55e633313290, callback=, user_data=) at ../../../../glib/gmain.c:4633 [Error: gmain.c was not found in source tree] #4 0x00007fc930940dd5 in g_main_dispatch (context=0x55e6332a98a0) at ../../../../glib/gmain.c:3148 [Error: gmain.c was not found in source tree] #5 g_main_context_dispatch (context=context@entry=0x55e6332a98a0) at ../../../../glib/gmain.c:3813 [Error: gmain.c was not found in source tree] #6 0x00007fc9309411a0 in g_main_context_iterate (context=0x55e6332a98a0, block=block@entry=1, dispatch=dispatch@entry=1, self=) at ../../../../glib/gmain.c:3886 [Error: gmain.c was not found in source tree] #7 0x00007fc9309414b2 in g_main_loop_run (loop=0x55e633289e10) at ../../../../glib/gmain.c:4082 [Error: gmain.c was not found in source tree] #8 0x000055e632d5a8b2 in main (argc=, argv=) at ../src/fu-main.c:947 942: else if (timed_exit) 943: g_timeout_add_seconds (5, fu_main_timed_exit_cb, priv->loop); 944: 945: /* wait */ 946: g_message ("Daemon ready for requests"); 947: g_main_loop_run (priv->loop); 948: 949: /* success */ 950: return EXIT_SUCCESS; 951: }