Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • logging.c

    r0a9ffc5 r0792d99  
    436436void owl_log_init(void)
    437437{
     438  log_context = g_main_context_new();
     439#if GLIB_CHECK_VERSION(2, 31, 0)
     440  logging_thread = g_thread_new("logging",
     441                                owl_log_thread_func,
     442                                NULL);
     443#else
    438444  GError *error = NULL;
    439   log_context = g_main_context_new();
    440445  logging_thread = g_thread_create(owl_log_thread_func,
    441446                                   NULL,
     
    448453    exit(1);
    449454  }
     455#endif
    450456 
    451457}
Note: See TracChangeset for help on using the changeset viewer.